monopoly-shared-model
Version:
Shared model for Monopoly
9 lines (8 loc) • 358 B
TypeScript
import { AbstractPropertyAction } from './AbstractPropertyAction';
export declare class CanBuyPropertyAction extends AbstractPropertyAction {
private propertyName;
private price;
constructor(playerName: string, message: string, propertyIndex: number, propertyName: string, price: number);
getPropertyName(): string;
getPrice(): number;
}