@mtgame/core 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/mtgame-core.umd.js +14 -2
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/models/game-user-limitation.js +12 -2
- package/esm5/models/game-user-limitation.js +15 -3
- package/fesm2015/mtgame-core.js +11 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +14 -2
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/game-user-limitation.d.ts +3 -1
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
package/fesm5/mtgame-core.js
CHANGED
|
@@ -2603,9 +2603,21 @@ var GameUser = /** @class */ (function (_super) {
|
|
|
2603
2603
|
return GameUser;
|
|
2604
2604
|
}(BaseModel));
|
|
2605
2605
|
|
|
2606
|
-
var GameUserLimitationTypes = /** @class */ (function () {
|
|
2606
|
+
var GameUserLimitationTypes = /** @class */ (function (_super) {
|
|
2607
|
+
__extends(GameUserLimitationTypes, _super);
|
|
2607
2608
|
function GameUserLimitationTypes() {
|
|
2609
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
2608
2610
|
}
|
|
2611
|
+
GameUserLimitationTypes.toFront = function (data) {
|
|
2612
|
+
};
|
|
2613
|
+
GameUserLimitationTypes.toBack = function (data) {
|
|
2614
|
+
};
|
|
2615
|
+
__decorate([
|
|
2616
|
+
ToFrontHook
|
|
2617
|
+
], GameUserLimitationTypes, "toFront", null);
|
|
2618
|
+
__decorate([
|
|
2619
|
+
ToBackHook
|
|
2620
|
+
], GameUserLimitationTypes, "toBack", null);
|
|
2609
2621
|
GameUserLimitationTypes = __decorate([
|
|
2610
2622
|
ModelInstance({
|
|
2611
2623
|
mappingFields: {
|
|
@@ -2615,7 +2627,7 @@ var GameUserLimitationTypes = /** @class */ (function () {
|
|
|
2615
2627
|
})
|
|
2616
2628
|
], GameUserLimitationTypes);
|
|
2617
2629
|
return GameUserLimitationTypes;
|
|
2618
|
-
}());
|
|
2630
|
+
}(BaseModel));
|
|
2619
2631
|
var GameUserLimitations = /** @class */ (function (_super) {
|
|
2620
2632
|
__extends(GameUserLimitations, _super);
|
|
2621
2633
|
function GameUserLimitations() {
|