/**
 * @name ICommand
 * @description
 * Interface for Minecraft Commands
 */
export interface ICommand {
    /**
     * @name Command
     * @description
     * The generated command, which can be imported into the game
     */
    Command: String;
}
