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

@ -5,11 +5,11 @@ import net.minecraft.text.Text;
public class AltManagerScreen extends Screen
{
public static AltManagerScreen INSTANCE = new AltManagerScreen();
public static AltManagerScreen INSTANCE = new AltManagerScreen(null);
protected AltManagerScreen(Text title)
protected AltManagerScreen()
{
super(title);
super(Text.literal("Alt Manager"));
}
}