package net.tylermurphy.Minecraft.UI.UIFactory; import static net.tylermurphy.Minecraft.UI.UIMaster.*; import net.tylermurphy.Minecraft.UI.UIText; public class CommandUI { public static void initCommandUI() { createUI(3); setEnabled(false); UIText commandBar = new UIText("/",1,UIStore.FONTS.get("yugothic"),1000,false); commandBar.setPosition(0, 0, 1-.1f, 0); commandBar.setKey("commandBar"); commandBar.setStretchBackdrop(true); add(commandBar); } }