12 lines
213 B
C#
12 lines
213 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace RecrownedAthenaeum.Tools.CommandProcessor
|
|||
|
{
|
|||
|
interface ICommandEngineCommand
|
|||
|
{
|
|||
|
void Run(string[] arguments);
|
|||
|
}
|
|||
|
}
|