monopoly-shared-model
Version:
Shared model for Monopoly
11 lines • 520 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const AbstractAction_1 = require("./AbstractAction");
const EnumActionType_1 = require("./EnumActionType");
class NextPlayerThrowDiceAction extends AbstractAction_1.AbstractAction {
constructor(playerName, message) {
super(EnumActionType_1.EnumActionType.NEXT_PLAYER_MUST_THROW_DICES, playerName, message);
}
}
exports.NextPlayerThrowDiceAction = NextPlayerThrowDiceAction;
//# sourceMappingURL=NextPlayerThrowDiceAction.js.map