monopoly-shared-model
Version:
Shared model for Monopoly
9 lines (8 loc) • 323 B
TypeScript
import { AbstractAction } from './AbstractAction';
export declare class ArriveOnBoxAction extends AbstractAction {
private fromBoxIndex;
private toBoxIndex;
constructor(playerName: string, message: string, fromBoxIndex: number, toBoxIndex: number);
getFromBoxIndex(): number;
getToBoxIndex(): number;
}