clickgui, make hud toggleable

This commit is contained in:
kawaiizenbo 2022-12-07 17:47:00 -07:00
parent 05ff377b5c
commit 411790540a
8 changed files with 173 additions and 19 deletions

View file

@ -0,0 +1,13 @@
package me.kawaiizenbo.moonlight.module.modules;
import me.kawaiizenbo.moonlight.module.Category;
import me.kawaiizenbo.moonlight.module.Module_;
public class HUDModule extends Module_
{
public HUDModule()
{
super("HUD", "Enables or disables the Moonlight HUD.", Category.RENDER);
this.enabled = true;
}
}