mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-10-06 20:46:21 -04:00
16 lines
256 B
C#
16 lines
256 B
C#
using System;
|
|
|
|
namespace ClassicalSharp.Commands {
|
|
|
|
public abstract class Command {
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string[] Help { get; set; }
|
|
|
|
public Game Window;
|
|
|
|
public abstract void Execute( CommandReader reader );
|
|
}
|
|
}
|