summaryrefslogtreecommitdiff
path: root/src/main/java/net/tylermurphy/Minecraft/UI/UIFactory/CommandUI.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/tylermurphy/Minecraft/UI/UIFactory/CommandUI.java')
-rwxr-xr-xsrc/main/java/net/tylermurphy/Minecraft/UI/UIFactory/CommandUI.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/main/java/net/tylermurphy/Minecraft/UI/UIFactory/CommandUI.java b/src/main/java/net/tylermurphy/Minecraft/UI/UIFactory/CommandUI.java
new file mode 100755
index 0000000..259958a
--- /dev/null
+++ b/src/main/java/net/tylermurphy/Minecraft/UI/UIFactory/CommandUI.java
@@ -0,0 +1,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);
+ }
+
+}