From fb63481d2c5b7b468df6c5ebdee30178bc9155f5 Mon Sep 17 00:00:00 2001 From: Ninjune x Date: Thu, 17 Nov 2022 16:56:06 -0600 Subject: 1.6.0 Changelog in releases --- gui/settingsGui.js | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 gui/settingsGui.js (limited to 'gui/settingsGui.js') diff --git a/gui/settingsGui.js b/gui/settingsGui.js deleted file mode 100644 index 48dbad7..0000000 --- a/gui/settingsGui.js +++ /dev/null @@ -1,29 +0,0 @@ -import { @Vigilant, @ButtonProperty, @SwitchProperty, @SelectorProperty, @TextProperty } from 'Vigilance' -import constants from "../util/constants.js" - -@Vigilant("Coleweight") -class Settings { - @ButtonProperty({ - name: "Change tracker position", - description: "Move the location of the tracker.", - category: "General", - placeholder: "Open" - }) - moveLocation() { - ChatLib.command("cw move", true); - } - - @TextProperty({ - name: "TBA", - description: "TBA; This menu will probably not work while this text is here.", - category: "General", - protected: false - }) - key = ""; - - constructor() { - this.initialize(this); - } -} - -export default new Settings() \ No newline at end of file -- cgit