diff options
author | Lorenz <lo.scherf@gmail.com> | 2022-08-23 22:34:07 +0200 |
---|---|---|
committer | Lorenz <lo.scherf@gmail.com> | 2022-08-23 22:34:07 +0200 |
commit | ef58e92c169ac94370c8a6dd48146587571cf8d2 (patch) | |
tree | 2573525c9c49f21194621a5b86ea3cb00f1fcf55 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | d1ee14065e1eafd1e0679bf4290087947d9564bd (diff) | |
download | skyhanni-ef58e92c169ac94370c8a6dd48146587571cf8d2.tar.gz skyhanni-ef58e92c169ac94370c8a6dd48146587571cf8d2.tar.bz2 skyhanni-ef58e92c169ac94370c8a6dd48146587571cf8d2.zip |
added rng meter coloring methods
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java index e2231a9d1..ba11c6098 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java @@ -1,8 +1,6 @@ package at.hannibal2.skyhanni.config.features; -import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigEditorBoolean; -import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigEditorDraggableList; -import at.hannibal2.skyhanni.config.gui.core.config.annotations.ConfigOption; +import at.hannibal2.skyhanni.config.gui.core.config.annotations.*; import com.google.gson.annotations.Expose; import java.util.ArrayList; @@ -48,4 +46,26 @@ public class Inventory { desc = "Show a compact star count in the item name for all items") @ConfigEditorBoolean public boolean itemStars = false; + + @ConfigOption(name = "RNG Meter", desc = "") + @ConfigEditorAccordion(id = 0) + public boolean rngMeter = false; + + @Expose + @ConfigOption(name = "Floor Names", desc = "Show the floor names in the catacombs rng meter inventory") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean rngMeterFloorName = false; + + @Expose + @ConfigOption(name = "No Drop", desc = "Highlight floors without a drop selected in the catacombs rng meter inventory") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean rngMeterNoDrop = false; + + @Expose + @ConfigOption(name = "Selected Drop", desc = "Highlight the selected drop in the catacombs oder slayer rng meter inventory") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean rngMeterSelectedDrop = false; } |