recrownedathenaeum/RecrownedAthenaeum.ConsoleTools/CommandProcessor/CommandEngine.cs

24 lines
457 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace RecrownedAthenaeum.Tools.CommandProcessor
{
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)
{
}
}
}