diff options
author | DJtheRedstoner <52044242+DJtheRedstoner@users.noreply.github.com> | 2021-08-20 17:17:16 -0400 |
---|---|---|
committer | DJtheRedstoner <52044242+DJtheRedstoner@users.noreply.github.com> | 2021-08-20 17:17:16 -0400 |
commit | 12888a9eb0469a5462e497a29eb4d3d15bb48f3c (patch) | |
tree | 0c0ab075cfefd3fca76e7d35704f7ba20ae961f9 /src/main/java/me/djtheredstoner/perspectivemod/config/PerspectiveModConfig.java | |
parent | 28fb656d8b285f3da2227dd859735392902a31ef (diff) | |
download | PerspectiveModv4-12888a9eb0469a5462e497a29eb4d3d15bb48f3c.tar.gz PerspectiveModv4-12888a9eb0469a5462e497a29eb4d3d15bb48f3c.tar.bz2 PerspectiveModv4-12888a9eb0469a5462e497a29eb4d3d15bb48f3c.zip |
this is why we can't have nice things
Diffstat (limited to 'src/main/java/me/djtheredstoner/perspectivemod/config/PerspectiveModConfig.java')
-rw-r--r-- | src/main/java/me/djtheredstoner/perspectivemod/config/PerspectiveModConfig.java | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/main/java/me/djtheredstoner/perspectivemod/config/PerspectiveModConfig.java b/src/main/java/me/djtheredstoner/perspectivemod/config/PerspectiveModConfig.java deleted file mode 100644 index dd10623..0000000 --- a/src/main/java/me/djtheredstoner/perspectivemod/config/PerspectiveModConfig.java +++ /dev/null @@ -1,42 +0,0 @@ -package me.djtheredstoner.perspectivemod.config; - -import gg.essential.vigilance.Vigilant; -import gg.essential.vigilance.data.Property; -import gg.essential.vigilance.data.PropertyType; - -import java.io.File; - -public class PerspectiveModConfig extends Vigilant { - - @Property( - type = PropertyType.SWITCH, - name = "Perspective Mod", - category = "General", - subcategory = "General", - description = "Toggle Perspective Mod entirely." - ) - public boolean modEnabled = true; - - @Property( - type = PropertyType.SWITCH, - name = "Hold Mode", - category = "General", - subcategory = "General", - description = "Return to normal perspective after releasing keybind." - ) - public boolean holdMode = true; - - @Property( - type = PropertyType.SWITCH, - name = "Invert Pitch", - category = "General", - subcategory = "General", - description = "Invert the pitch while in perspective (same as blc/lunar)." - ) - public boolean invertPitch = false; - - public PerspectiveModConfig() { - super(new File("./config/perspectivemodv4.toml")); - initialize(); - } -} |