monopoly-shared-model
Version:
Shared model for Monopoly
9 lines (8 loc) • 346 B
TypeScript
import { AbstractPropertyAction } from './AbstractPropertyAction';
export declare class MustPayRentAction extends AbstractPropertyAction {
private toPlayer;
private amount;
constructor(playerName: string, message: string, propertyIndex: number, toPlayer: string, amount: number);
getToPlayer(): string;
getAmount(): number;
}