blob: 48dbad7fee599f884371d06bdabce38a8a27b5c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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()
|