summaryrefslogtreecommitdiff
path: root/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/container/GuiTab.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2014-04-15 23:05:32 +0300
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2014-04-15 23:05:32 +0300
commit256653501365eb4f95d3dddbcdfdc23a2a9594d5 (patch)
tree682c8ff1f943936d173299acfa42e77462eb297c /eclipse/Jewelrycraft/common/darkknight/jewelrycraft/container/GuiTab.java
parent4b8b13b34d7a8fd0ee7c7b13f11be9c2bf3b5d18 (diff)
Moved source files
Diffstat (limited to 'eclipse/Jewelrycraft/common/darkknight/jewelrycraft/container/GuiTab.java')
-rw-r--r--eclipse/Jewelrycraft/common/darkknight/jewelrycraft/container/GuiTab.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/container/GuiTab.java b/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/container/GuiTab.java
deleted file mode 100644
index c092ba6..0000000
--- a/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/container/GuiTab.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package darkknight.jewelrycraft.container;
-
-import cpw.mods.fml.relauncher.Side;
-import cpw.mods.fml.relauncher.SideOnly;
-import darkknight.jewelrycraft.client.GuiGuide;
-
-@SideOnly(Side.CLIENT)
-public abstract class GuiTab extends GuiRectangle
-{
- int values, del;
- private String name;
-
- public GuiTab(String name, int id)
- {
- super(-62, 10 + 19*id, 19, 18);
- this.name = name;
- values = 0;
- del = 0;
- }
-
- public String getName()
- {
- return name;
- }
-
- public abstract void drawBackground(GuiGuide gui, int x, int y, int page);
- public abstract void drawForeground(GuiGuide gui, int x, int y, int page);
- public void mouseClick(GuiGuide gui, int x, int y, int button) {}
- public void mouseMoveClick(GuiGuide gui, int x, int y, int button, long timeSinceClicked) {}
- public void mouseReleased(GuiGuide gui, int x, int y, int button) {}
-
- public int getMaxPages()
- {
- return 1;
- }
-
-}