diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-09-17 19:39:05 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-09-17 19:39:05 +0800 |
commit | 431e4fc9d1657a50ebc34b8ac24f9bfaea06417f (patch) | |
tree | 5987bb14f38d2999c682970429f34b41eb3e5826 /features/fpsImproveGui/index.js | |
parent | e73f2efdf0f50aa775c540317394d46428e9704f (diff) | |
download | SoopyV2-431e4fc9d1657a50ebc34b8ac24f9bfaea06417f.tar.gz SoopyV2-431e4fc9d1657a50ebc34b8ac24f9bfaea06417f.tar.bz2 SoopyV2-431e4fc9d1657a50ebc34b8ac24f9bfaea06417f.zip |
Initial move to babel + change fetch to use async/await
Diffstat (limited to 'features/fpsImproveGui/index.js')
-rw-r--r-- | features/fpsImproveGui/index.js | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/features/fpsImproveGui/index.js b/features/fpsImproveGui/index.js deleted file mode 100644 index 8387dbd..0000000 --- a/features/fpsImproveGui/index.js +++ /dev/null @@ -1,58 +0,0 @@ -/// <reference types="../../../CTAutocomplete" /> -/// <reference lib="es2015" /> -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 ButtonWithArrow from "../../../guimanager/GuiElement/ButtonWithArrow"; -import BoxWithText from "../../../guimanager/GuiElement/BoxWithText"; -import { fetch } from "../../utils/networkUtils"; - -class FpsImproveGui extends Feature { - constructor() { - super() - } - - onEnable() { - this.initVariables() - - // this.GuiPage = new FpsPage() - - } - - initVariables() { - this.GuiPage = undefined - } - - onDisable() { - this.initVariables() - } -} - - -class FpsPage extends GuiPage { - constructor() { - super(7) - - this.name = "Fps Improve Tips" - - this.pages = [this.newPage()] - - // this.pages[0].addChild(this.streamsBox) - - this.finaliseLoading() - } - - onOpen() { - this.updateStreams() - } -} - - -module.exports = { - class: new FpsImproveGui() -}
\ No newline at end of file |