UNPKG

@robotlegsjs/phaser

Version:

RobotlegsJS integration with Phaser Scene Manager

42 lines 2 kB
"use strict"; // ------------------------------------------------------------------------------ // Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. // ------------------------------------------------------------------------------ Object.defineProperty(exports, "__esModule", { value: true }); exports.SceneManagerBindingEvent = void 0; var tslib_1 = require("tslib"); var core_1 = require("@robotlegsjs/core"); /** * @private */ var SceneManagerBindingEvent = /** @class */ (function (_super) { tslib_1.__extends(SceneManagerBindingEvent, _super); /*============================================================================*/ /* Constructor */ /*============================================================================*/ /** * @private */ function SceneManagerBindingEvent(type) { return _super.call(this, type) || this; } /*============================================================================*/ /* Public Functions */ /*============================================================================*/ /** * @inheritDoc */ SceneManagerBindingEvent.prototype.clone = function () { return new SceneManagerBindingEvent(this.type); }; /*============================================================================*/ /* Public Static Properties */ /*============================================================================*/ SceneManagerBindingEvent.BINDING_EMPTY = "bindingEmpty"; return SceneManagerBindingEvent; }(core_1.Event)); exports.SceneManagerBindingEvent = SceneManagerBindingEvent; //# sourceMappingURL=SceneManagerBindingEvent.js.map