@robotlegsjs/pixi-palidor
Version:
A RobotlegsJS View Manager Extension for PixiJS
23 lines • 1.08 kB
JavaScript
;
// ------------------------------------------------------------------------------
// 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.PalidorEvent = void 0;
var tslib_1 = require("tslib");
var core_1 = require("@robotlegsjs/core");
var PalidorEvent = /** @class */ (function (_super) {
tslib_1.__extends(PalidorEvent, _super);
function PalidorEvent(type) {
return _super.call(this, type) || this;
}
PalidorEvent.REMOVE_CURRENT_VIEW = "removeCurrentView";
PalidorEvent.REMOVE_ALL_FLOATING_VIEWS = "removeAllFloatingViews";
PalidorEvent.REMOVE_LAST_FLOATING_VIEW_ADDED = "removeLastFloatingViewAdded";
return PalidorEvent;
}(core_1.Event));
exports.PalidorEvent = PalidorEvent;
//# sourceMappingURL=PalidorEvent.js.map