monopoly-shared-model
Version:
Shared model for Monopoly
12 lines (11 loc) • 394 B
TypeScript
import { EnumActionType } from './EnumActionType';
import { Serializable } from '../Serializable';
export declare abstract class AbstractAction extends Serializable {
private type;
private playerName;
private message;
constructor(type: EnumActionType, playerName: string, message: string);
getType(): EnumActionType;
getMessage(): string;
getPlayerName(): string;
}