@runox-game/game-engine
Version:
RunoX game engine
15 lines (14 loc) • 502 B
TypeScript
import { GameCommand } from './game.command';
import { IGameState } from '../models/game-state.model';
import { CommandValidation } from './command-result';
/**
* Class that allows cards creation and add them to the game deck
*/
export declare class BuildDeckCommand extends GameCommand {
/**
* Class that allows cards creation and add them to the game deck
*/
constructor();
execute(state: IGameState): void;
validate(state: IGameState): CommandValidation;
}