25 lines
470 B
C#
25 lines
470 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace RecrownedAthenaeum.Tools.CommandProcessor
|
|
{
|
|
internal class CommandEngine
|
|
{
|
|
public bool running;
|
|
public void Process(string command)
|
|
{
|
|
|
|
}
|
|
|
|
internal void Run()
|
|
{
|
|
while (running)
|
|
{
|
|
string command = Console.ReadLine();
|
|
Process(command);
|
|
}
|
|
}
|
|
}
|
|
}
|