monopoly-shared-model
Version:
Shared model for Monopoly
8 lines (7 loc) • 340 B
TypeScript
import { EnumActionType } from './EnumActionType';
import { AbstractAction } from './AbstractAction';
export declare abstract class AbstractPropertyAction extends AbstractAction {
private propertyIndex;
constructor(type: EnumActionType, playerName: string, message: string, propertyIndex: number);
getPropertyIndex(): number;
}