summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/container/GuiRectangle.java
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2014-04-14 11:58:43 +0300
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2014-04-14 11:58:43 +0300
commit1a692ab45df3d88a6cc247cc9f4c0a41c7715264 (patch)
tree1854960d78be20ef09c9f098f5e2eb92837019dd /common/darkknight/jewelrycraft/container/GuiRectangle.java
parentf965cf88704f1e5e674d98308cbe0f4451d7edeb (diff)
Updating to 1.7
Diffstat (limited to 'common/darkknight/jewelrycraft/container/GuiRectangle.java')
-rw-r--r--common/darkknight/jewelrycraft/container/GuiRectangle.java66
1 files changed, 0 insertions, 66 deletions
diff --git a/common/darkknight/jewelrycraft/container/GuiRectangle.java b/common/darkknight/jewelrycraft/container/GuiRectangle.java
deleted file mode 100644
index 76dee04..0000000
--- a/common/darkknight/jewelrycraft/container/GuiRectangle.java
+++ /dev/null
@@ -1,66 +0,0 @@
-package darkknight.jewelrycraft.container;
-
-import java.util.Arrays;
-
-import net.minecraft.item.ItemStack;
-
-import darkknight.jewelrycraft.client.GuiGuide;
-
-public class GuiRectangle
-{
-
- private int x;
- private int y;
- private int w;
- private int h;
-
- public GuiRectangle(int x, int y, int w, int h)
- {
- this.x = x;
- this.y = y;
- this.w = w;
- this.h = h;
- }
-
- public boolean inRect(GuiGuide gui, int mouseX, int mouseY)
- {
- mouseX -= gui.getLeft();
- mouseY -= gui.getTop();
-
- return x <= mouseX && mouseX <= x + w && y <= mouseY && mouseY <= y + h;
- }
-
- public void setX(int x)
- {
- this.x = x;
- }
-
- public void setY(int y)
- {
- this.y = y;
- }
-
-
- public void draw(GuiGuide gui, int srcX, int srcY)
- {
- gui.drawTexturedModalRect(gui.getLeft() + x, gui.getTop() + y, srcX, srcY, w, h);
- }
-
-
- public void draw(GuiGuide gui, int srcX, int srcY, int width, int height)
- {
- gui.drawTexturedModalRect(gui.getLeft() + x, gui.getTop() + y, srcX, srcY, width, height);
- }
-
- public void drawString(GuiGuide gui, int mouseX, int mouseY, String str)
- {
- if (inRect(gui, mouseX, mouseY)) {
- gui.drawHoverString(Arrays.asList(str.split("\n")), mouseX - gui.getLeft(), mouseY - gui.getTop());
- }
- }
-
- public ItemStack getIcon()
- {
- return null;
- }
-}