@shockpkg/dir-projector
Version:
Package for creating Shockwave Director projectors
53 lines (47 loc) • 868 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.BundleOtto = void 0;
var _bundle = require("../bundle.js");
/**
* BundleOtto object.
*/
class BundleOtto extends _bundle.Bundle {
/**
* ProjectorOtto instance.
*/
/**
* BundleOtto constructor.
*
* @param path Output path.
* @param flat Flat bundle.
*/
constructor(path, flat = false) {
super(path, flat);
}
/**
* @inheritdoc
*/
async _close() {
if (!this.flat) {
await this._writeLauncher();
}
await super._close();
}
/**
* Main application file extension.
*
* @returns File extension.
*/
/**
* Create projector instance for the bundle.
*
* @returns Projector instance.
*/
/**
* Write the launcher file.
*/
}
exports.BundleOtto = BundleOtto;
//# sourceMappingURL=otto.js.map