WallHack: Move hpMode to top of settings

This commit is contained in:
noil 2021-01-07 18:17:12 -05:00
parent 44852b2322
commit 608814b9fb
1 changed files with 1 additions and 2 deletions

View File

@ -55,6 +55,7 @@ import java.util.concurrent.CopyOnWriteArrayList;
public final class WallHackModule extends Module {
public final Value<Mode> mode = new Value<Mode>("Mode", new String[]{"Mode", "M"}, "The mode of the drawn esp/wallhack.", Mode.OPAQUE);
public final Value<HealthMode> hpMode = new Value<HealthMode>("Hp", new String[]{"Health", "HpMode"}, "Rendering mode for the health bar.", HealthMode.NONE);
private enum Mode {
OPAQUE, BOX
@ -104,8 +105,6 @@ public final class WallHackModule extends Module {
public final Value<Boolean> background = new Value<Boolean>("Background", new String[]{"Bg"}, "Draw a transparent black background behind any text or icon drawn.", true);
public final Value<HealthMode> hpMode = new Value<HealthMode>("Hp", new String[]{"Health", "HpMode"}, "Rendering mode for the health bar.", HealthMode.NONE);
private enum HealthMode {
NONE, BAR, BARTEXT
}