ClassiCube/Commands/Command.cs

18 lines
331 B
C#

using System;
namespace ClassicalSharp.Commands {
public abstract class Command {
public abstract string Name { get; }
public virtual string[] Help {
get { return new [] { "No help is available for this command." }; }
}
public Game Window;
public abstract void Execute( CommandReader reader );
}
}