8e1e5f4c-3de7-4e81-b69a-47027bb6149b.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. "use strict";
  2. cc._RF.push(module, '8e1e59MPedOgbaaRwJ7thSb', 'NotifyModel');
  3. // Script/model/NotifyModel.ts
  4. "use strict";
  5. var __extends = (this && this.__extends) || (function () {
  6. var extendStatics = function (d, b) {
  7. extendStatics = Object.setPrototypeOf ||
  8. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  9. function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
  10. return extendStatics(d, b);
  11. };
  12. return function (d, b) {
  13. extendStatics(d, b);
  14. function __() { this.constructor = d; }
  15. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  16. };
  17. })();
  18. Object.defineProperty(exports, "__esModule", { value: true });
  19. var BaseModel_1 = require("../../lightMVC/core/base/BaseModel");
  20. var NotifyModel = /** @class */ (function (_super) {
  21. __extends(NotifyModel, _super);
  22. function NotifyModel() {
  23. return _super !== null && _super.apply(this, arguments) || this;
  24. }
  25. NotifyModel.prototype.init = function () {
  26. };
  27. NotifyModel.prototype.sendNotify = function (notify, data) {
  28. this.sendNoti(notify, data);
  29. };
  30. NotifyModel.prototype.clear = function () {
  31. };
  32. return NotifyModel;
  33. }(BaseModel_1.default));
  34. exports.default = NotifyModel;
  35. cc._RF.pop();