2018-12-05 21:44:26 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2018-12-07 08:22:15 +00:00
|
|
|
|
namespace RecrownedAthenaeum.Tools.CommandProcessor
|
2018-12-05 21:44:26 +00:00
|
|
|
|
{
|
|
|
|
|
internal class CommandEngine
|
|
|
|
|
{
|
|
|
|
|
public bool running;
|
|
|
|
|
|
|
|
|
|
internal void Run()
|
|
|
|
|
{
|
|
|
|
|
while (running)
|
|
|
|
|
{
|
|
|
|
|
string command = Console.ReadLine();
|
|
|
|
|
Process(command);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-07 08:27:34 +00:00
|
|
|
|
public void Process(string command)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-12-05 21:44:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|