recrownedathenaeum/RecrownedAthenaeum.ConsoleTools/CommandProcessor/CommandEngine.cs

25 lines
477 B
C#
Raw Normal View History

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);
}
}
}
}