You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
612 B
Java

package net.brokenmoon.afloydwiremod.gui;
import net.minecraft.src.GuiButton;
public class GuiButtonExtended extends GuiButton {
public String type;
public int slot;
public GuiButtonExtended(int xPosition, int yPosition, String s, String extra, int slot) {
super(0, xPosition, yPosition, s);
this.type = extra;
this.slot = slot;
}
public GuiButtonExtended(int xPosition, int yPosition, int width, int height, String s, String extra, int slot) {
super(0, xPosition, yPosition, width, height, s);
this.type = extra;
this.slot = slot;
}
}