ClassiCube/Commands/Command.cs
UnknownShadow200 423d365267 Add everything.
2014-12-17 14:47:17 +11:00

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 );
}
}