diff options
| author | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2014-04-14 11:58:43 +0300 |
|---|---|---|
| committer | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2014-04-14 11:58:43 +0300 |
| commit | 1a692ab45df3d88a6cc247cc9f4c0a41c7715264 (patch) | |
| tree | 1854960d78be20ef09c9f098f5e2eb92837019dd /common/darkknight/jewelrycraft/container/GuiTab.java | |
| parent | f965cf88704f1e5e674d98308cbe0f4451d7edeb (diff) | |
Updating to 1.7
Diffstat (limited to 'common/darkknight/jewelrycraft/container/GuiTab.java')
| -rw-r--r-- | common/darkknight/jewelrycraft/container/GuiTab.java | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/common/darkknight/jewelrycraft/container/GuiTab.java b/common/darkknight/jewelrycraft/container/GuiTab.java deleted file mode 100644 index c092ba6..0000000 --- a/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; - } - -} |
