using System; using System.Collections.Generic; using System.Text; namespace RecrownedAthenaeum.Tools.CommandProcessor { interface ICommandEngineCommand { void Run(string[] arguments); } }