monopoly-shared-model
Version:
Shared model for Monopoly
11 lines (10 loc) • 324 B
TypeScript
import { Serializable } from '../Serializable';
export declare class JailedPlayerThrow extends Serializable {
private playerName;
private nbTries;
constructor(playerName: string);
getNbTries(): number;
getPlayerName(): string;
incrementNbTries(): void;
static emptyObject(): JailedPlayerThrow;
}