f37812be3e
I may have got a bit behind with version control. A lot behind, in fact. Maybe I'll go back and split this sometime - then again, I probably won't. But hey, at least it's here!
19 lines
545 B
Java
19 lines
545 B
Java
package electroblob.wizardry.client.gui;
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.gui.GuiButton;
|
|
|
|
//@SideOnly(Side.CLIENT)
|
|
public class GuiButtonInvisible extends GuiButton {
|
|
|
|
public GuiButtonInvisible(int id, int x, int y, int width, int height){
|
|
super(id, x, y, width, height, "");
|
|
}
|
|
|
|
@Override
|
|
public void drawButton(Minecraft minecraft, int mouseX, int mouseY, float partialTicks){
|
|
this.hovered = mouseX >= this.x && mouseY >= this.y && mouseX < this.x + this.width && mouseY < this.y + this.height;
|
|
}
|
|
|
|
}
|