@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
|
@@ -2816,9 +2816,21 @@
|
|
|
2816
2816
|
return GameUser;
|
|
2817
2817
|
}(BaseModel));
|
|
2818
2818
|
|
|
2819
|
-
var GameUserLimitationTypes = /** @class */ (function () {
|
|
2819
|
+
var GameUserLimitationTypes = /** @class */ (function (_super) {
|
|
2820
|
+
__extends(GameUserLimitationTypes, _super);
|
|
2820
2821
|
function GameUserLimitationTypes() {
|
|
2822
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
2821
2823
|
}
|
|
2824
|
+
GameUserLimitationTypes.toFront = function (data) {
|
|
2825
|
+
};
|
|
2826
|
+
GameUserLimitationTypes.toBack = function (data) {
|
|
2827
|
+
};
|
|
2828
|
+
__decorate([
|
|
2829
|
+
ToFrontHook
|
|
2830
|
+
], GameUserLimitationTypes, "toFront", null);
|
|
2831
|
+
__decorate([
|
|
2832
|
+
ToBackHook
|
|
2833
|
+
], GameUserLimitationTypes, "toBack", null);
|
|
2822
2834
|
GameUserLimitationTypes = __decorate([
|
|
2823
2835
|
ModelInstance({
|
|
2824
2836
|
mappingFields: {
|
|
@@ -2828,7 +2840,7 @@
|
|
|
2828
2840
|
})
|
|
2829
2841
|
], GameUserLimitationTypes);
|
|
2830
2842
|
return GameUserLimitationTypes;
|
|
2831
|
-
}());
|
|
2843
|
+
}(BaseModel));
|
|
2832
2844
|
var GameUserLimitations = /** @class */ (function (_super) {
|
|
2833
2845
|
__extends(GameUserLimitations, _super);
|
|
2834
2846
|
function GameUserLimitations() {
|