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