@shockpkg/dir-projector
Version:
Package for creating Shockwave Director projectors
29 lines (24 loc) • 465 B
JavaScript
import { Bundle } from "../bundle.mjs";
/**
* BundleWindows constructor.
*
* @param path Output path for the main application.
*/
export class BundleWindows extends Bundle {
/**
* ProjectorWindows instance.
*/
constructor(path) {
super(path);
this.projector = void 0;
}
/**
* Main application file extension.
*
* @returns File extension.
*/
get extension() {
return '.exe';
}
}
//# sourceMappingURL=windows.mjs.map