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); } } public void Process(string command) { } } }