diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-11-12 23:01:48 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-11-12 23:01:48 +0800 |
commit | 0944f0576c9ef34b0a6a19fea09f3bec3f062fb7 (patch) | |
tree | 8c41756f5a80bf48117088bb5d5c649c44e4556c /features/streamsGUI | |
parent | 9e7bedbd8bedd5599a756cce9cad76754f9a2e74 (diff) | |
download | SoopyV2-0944f0576c9ef34b0a6a19fea09f3bec3f062fb7.tar.gz SoopyV2-0944f0576c9ef34b0a6a19fea09f3bec3f062fb7.tar.bz2 SoopyV2-0944f0576c9ef34b0a6a19fea09f3bec3f062fb7.zip |
made cosmetics un-scuffed
Diffstat (limited to 'features/streamsGUI')
-rw-r--r-- | features/streamsGUI/index.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/features/streamsGUI/index.js b/features/streamsGUI/index.js index 0277eb4..9ac7bc0 100644 --- a/features/streamsGUI/index.js +++ b/features/streamsGUI/index.js @@ -3,11 +3,11 @@ import SoopyTextElement from "../../../guimanager/GuiElement/SoopyTextElement"; import Feature from "../../featureClass/class"; import GuiPage from "../soopyGui/GuiPage"; -// import SoopyBoxElement from "../../../guimanager/GuiElement/SoopyBoxElement"; -// import SoopyMarkdownElement from "../../../guimanager/GuiElement/SoopyMarkdownElement"; -// import SoopyImageElement from "../../../guimanager/GuiElement/SoopyImageElement"; -// import SoopyGuiElement from "../../../guimanager/GuiElement/SoopyGuiElement"; -// import SoopyMouseClickEvent from "../../../guimanager/EventListener/SoopyMouseClickEvent"; +import SoopyBoxElement from "../../../guimanager/GuiElement/SoopyBoxElement"; +import SoopyMarkdownElement from "../../../guimanager/GuiElement/SoopyMarkdownElement"; +import SoopyImageElement from "../../../guimanager/GuiElement/SoopyImageElement"; +import SoopyGuiElement from "../../../guimanager/GuiElement/SoopyGuiElement"; +import SoopyMouseClickEvent from "../../../guimanager/EventListener/SoopyMouseClickEvent"; class StreamsGui extends Feature { constructor() { @@ -17,7 +17,7 @@ class StreamsGui extends Feature { onEnable(){ this.initVariables() - // this.GuiPage = new StreamPage() + this.GuiPage = new StreamPage() } initVariables(){ @@ -29,7 +29,7 @@ class StreamsGui extends Feature { } } -/* + class StreamPage extends GuiPage { constructor(){ super(7) @@ -129,7 +129,7 @@ class StreamElement extends SoopyBoxElement { return this } -}*/ +} module.exports = { class: new StreamsGui() |