This commit is contained in:
kawaiizenbo 2023-03-08 21:05:01 -07:00
parent 3de1c7130a
commit e5b783553b
10 changed files with 56 additions and 31 deletions

View file

@ -2,24 +2,15 @@ package me.kawaiizenbo.moonlight.module.modules;
import me.kawaiizenbo.moonlight.module.Category;
import me.kawaiizenbo.moonlight.module.Module_;
import me.kawaiizenbo.moonlight.module.settings.BooleanSetting;
import me.kawaiizenbo.moonlight.module.settings.ColorSetting;
public class HUDModule extends Module_
{
public BooleanSetting enableLogo = new BooleanSetting("Logo", true);
public BooleanSetting enableFPS = new BooleanSetting("FPS", true);
public BooleanSetting enablePing = new BooleanSetting("Ping", true);
public BooleanSetting enableSpeed = new BooleanSetting("Speed", true);
public BooleanSetting enableCoordinates = new BooleanSetting("Coordinates", true);
public ColorSetting color = new ColorSetting("Color", 0x55FFFF);
public HUDModule()
{
super("HUD", "Enables or disables the Moonlight HUD.", Category.RENDER);
this.enabled = true;
settings.add(enableLogo);
settings.add(enableFPS);
settings.add(enablePing);
settings.add(enableSpeed);
settings.add(enableCoordinates);
settings.add(color);
}
}