1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- "use strict";
- cc._RF.push(module, 'f797044FIZNA5kubKGNJojj', 'MacroCommand');
- // lightMVC/core/command/MacroCommand.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 BaseCommand_1 = require("../base/BaseCommand");
- /**
- * 组合类型命令基类
- */
- var MacroCommand = /** @class */ (function (_super) {
- __extends(MacroCommand, _super);
- function MacroCommand() {
- var _this = _super !== null && _super.apply(this, arguments) || this;
- /** 组合命令列表 */
- _this._commandList = [];
- return _this;
- }
- /**
- * 向组合宏中添加子命令
- * @param {{new (): SimpleCommand}} command 子命令
- * @param {Object} body 命令参数
- */
- MacroCommand.prototype.addSubCommand = function (command, body) {
- this._commandList.push({ cmd: command, body: body });
- };
- return MacroCommand;
- }(BaseCommand_1.default));
- exports.default = MacroCommand;
- cc._RF.pop();
|