hud modules now save state to config

This commit is contained in:
kawaiizenbo 2024-09-09 09:56:53 -07:00
parent b8bb14081e
commit 206d076fbb
7 changed files with 132 additions and 6 deletions

View file

@ -15,6 +15,7 @@ public class ClickGUIScreen extends Screen
public static ClickGUIScreen INSTANCE = new ClickGUIScreen();
public ArrayList<CategoryPane> categoryPanes;
@SuppressWarnings("unchecked")
public ClickGUIScreen()
{
super(Text.literal("ClickGUI"));

View file

@ -4,7 +4,6 @@ import me.kawaiizenbo.moonlight.module.Module;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.font.TextRenderer;
import net.minecraft.client.gui.DrawContext;
import net.minecraft.util.Identifier;
public class ModuleButton
{