mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-10-01 01:35:23 -04:00
18 lines
331 B
C#
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 );
|
|
}
|
|
}
|