begun working on recrowned athenaeum tools.

This commit is contained in:
2018-12-05 15:44:26 -06:00
parent dde2c3dadf
commit 10a3faacf7
4 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace RecrownedAthenaeum.ConsoleTools.CommandProcessor
{
internal class CommandEngine
{
public bool running;
public void Process(string command)
{
}
internal void Run()
{
while (running)
{
string command = Console.ReadLine();
Process(command);
}
}
}
}