c007bdbf-d236-4f27-b5b3-bb2805653806.js 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. "use strict";
  2. cc._RF.push(module, 'c007b2/0jZPJ7WzuygFZTgG', 'AdAgent');
  3. // common-plugin/Scripts/AdAgent.ts
  4. "use strict";
  5. var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
  6. var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
  7. if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
  8. else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
  9. return c > 3 && r && Object.defineProperty(target, key, r), r;
  10. };
  11. Object.defineProperty(exports, "__esModule", { value: true });
  12. var _a = cc._decorator, ccclass = _a.ccclass, property = _a.property;
  13. var AdAgent = /** @class */ (function () {
  14. function AdAgent() {
  15. }
  16. AdAgent.prototype.Init = function () { };
  17. AdAgent.prototype.ShowBanner = function (location, args) { };
  18. AdAgent.prototype.HideBanner = function (location) { };
  19. AdAgent.prototype.ShowInterstitial = function (location) { };
  20. AdAgent.prototype.ShowVideo = function (callback) { };
  21. AdAgent.prototype.showInteractiveAd = function () { };
  22. AdAgent.prototype.ShowAppBox = function (isMoreGame) { };
  23. AdAgent.prototype.HideAppBox = function () { };
  24. AdAgent.prototype.showRewardInsert = function () { };
  25. AdAgent.prototype.hideRewardInsert = function () { };
  26. AdAgent.prototype.ShowCloseBtnBanner = function (location, args) { };
  27. AdAgent.prototype.ShowStatementRecomment = function () { };
  28. AdAgent.prototype.getNativeAdData = function (args) { };
  29. AdAgent.prototype.showStatementAds = function (data) { };
  30. AdAgent.prototype.createNativeAd = function (params, yzItem) {
  31. if (params === void 0) { params = null; }
  32. };
  33. AdAgent.prototype.hideKyxBanner = function () { };
  34. AdAgent.prototype.showNativeTryGameWidget = function (params) {
  35. if (params === void 0) { params = null; }
  36. };
  37. AdAgent.prototype.hideNativeTryGameWidget = function () { };
  38. AdAgent.prototype.showBlockAd = function (parme) { };
  39. AdAgent.prototype.hideBlockAd = function () { };
  40. AdAgent.prototype.showFullScreenVideo = function (callback) { };
  41. AdAgent.prototype.showNativeSplashView = function (callBack) { };
  42. AdAgent.prototype.ShowSingleNativeAd = function (params) { };
  43. AdAgent.prototype.HideSingleNativeAd = function (params) { };
  44. AdAgent.prototype.showCustomAd = function (params) { };
  45. AdAgent.prototype.hideCustomAd = function (params) { };
  46. AdAgent.prototype.createCustomADBanner = function () { };
  47. AdAgent = __decorate([
  48. ccclass("AdAgent")
  49. ], AdAgent);
  50. return AdAgent;
  51. }());
  52. exports.default = AdAgent;
  53. cc._RF.pop();