recrownedgtk/RecrownedAthenaeum.ConsoleTools/CommandProcessor/ICommandEngineCommand.cs

12 lines
213 B
C#

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