continued refactor.

This commit is contained in:
2018-12-07 02:27:34 -06:00
parent 1a4f704d9c
commit 26a359de46
5 changed files with 6 additions and 8 deletions

View File

@@ -7,10 +7,6 @@ namespace RecrownedAthenaeum.Tools.CommandProcessor
internal class CommandEngine
{
public bool running;
public void Process(string command)
{
}
internal void Run()
{
@@ -20,5 +16,8 @@ namespace RecrownedAthenaeum.Tools.CommandProcessor
Process(command);
}
}
public void Process(string command)
{
}
}
}