12345678910111213141516171819202122232425262728293031323334353637 |
- "use strict";
- cc._RF.push(module, '8e1e59MPedOgbaaRwJ7thSb', 'NotifyModel');
- // Script/model/NotifyModel.ts
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- Object.defineProperty(exports, "__esModule", { value: true });
- var BaseModel_1 = require("../../lightMVC/core/base/BaseModel");
- var NotifyModel = /** @class */ (function (_super) {
- __extends(NotifyModel, _super);
- function NotifyModel() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- NotifyModel.prototype.init = function () {
- };
- NotifyModel.prototype.sendNotify = function (notify, data) {
- this.sendNoti(notify, data);
- };
- NotifyModel.prototype.clear = function () {
- };
- return NotifyModel;
- }(BaseModel_1.default));
- exports.default = NotifyModel;
- cc._RF.pop();
|