diff options
| author | Foghrye4 <foghrye4@gmail.com> | 2017-06-17 08:12:18 +0300 |
|---|---|---|
| committer | Foghrye4 <foghrye4@gmail.com> | 2017-06-17 08:12:18 +0300 |
| commit | dc3df3edd5843bde0c1335d6a8e460b2c832aa48 (patch) | |
| tree | af13bfeee567f2351e35e1ef176d168fe37c8aac /ihl/interfaces/ItemMiniGUI.java | |
| parent | 1da8dcd58647e34c9af94ceeecaeaf3b0d08c48c (diff) | |
full project files
Diffstat (limited to 'ihl/interfaces/ItemMiniGUI.java')
| -rw-r--r-- | ihl/interfaces/ItemMiniGUI.java | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/ihl/interfaces/ItemMiniGUI.java b/ihl/interfaces/ItemMiniGUI.java deleted file mode 100644 index 249fb7d..0000000 --- a/ihl/interfaces/ItemMiniGUI.java +++ /dev/null @@ -1,29 +0,0 @@ -package ihl.interfaces; - -import net.minecraft.client.gui.inventory.GuiContainer; -import net.minecraft.inventory.Slot; - -public abstract class ItemMiniGUI { - protected final GuiContainer guiBase; - protected final Slot slotBase; - - protected final int TEXT_BOX_POSX = 50; - protected final int TEXT_BOX_POSY = 16; - protected final int TEXT_BOX_WIDTH = 42; - protected final int UNITS_LABEL_POSX = 105; - protected final int HEIGHT = 39; - protected final int RUNNER_POSY = 30; - - public ItemMiniGUI(GuiContainer gui, Slot slot) { - guiBase = gui; - slotBase = slot; - } - - public abstract void displayGUI(); - - public abstract boolean handleMouseClick(int mouseButton, int mouseX, int mouseY); - - public abstract boolean handleKeyTyped(char characterTyped, int keyIndex); - - public abstract void onGUIClosed(); -} |
