monopoly-shared-model
Version:
Shared model for Monopoly
11 lines • 385 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Box_1 = require("./Box");
const EnumBoxType_1 = require("./enums/EnumBoxType");
class GoToPrison extends Box_1.Box {
constructor(index) {
super(index, 'ALLER EN PRISON', EnumBoxType_1.EnumBoxType.GO_TO_PRISON);
}
}
exports.GoToPrison = GoToPrison;
//# sourceMappingURL=GoToPrison.js.map