summaryrefslogtreecommitdiff
path: root/src/main/java/net/tylermurphy/Minecraft/UI/UIFactory/CommandUI.java
blob: 259958aedf7bcc7afddfbe8b56453523c9f688a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
	}
	
}