25 lines
477 B
C#
25 lines
477 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|