begun working on recrowned athenaeum tools.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user