ShopAI-Extension/scripts/GUI/entrypoints/ManagedWindow.js
2024-04-28 23:55:28 +08:00

14 lines
No EOL
297 B
JavaScript

import Window from "/scripts/GUI/window.js";
export default class ManagedWindow {
constructor () {
this.instance = new Window("/pages/popup.htm", {"width": 500, "height": 500, "type": "popup", "hidden": true});
}
/*
Show the popup.
*/
show() {
this.instance.show();
}
}