diff options
Diffstat (limited to 'src/Java/gtPlusPlus/core/gui/machine')
| -rw-r--r-- | src/Java/gtPlusPlus/core/gui/machine/GUI_EggBox.java | 60 | 
1 files changed, 60 insertions, 0 deletions
| diff --git a/src/Java/gtPlusPlus/core/gui/machine/GUI_EggBox.java b/src/Java/gtPlusPlus/core/gui/machine/GUI_EggBox.java new file mode 100644 index 0000000000..49d9890d3a --- /dev/null +++ b/src/Java/gtPlusPlus/core/gui/machine/GUI_EggBox.java @@ -0,0 +1,60 @@ +package gtPlusPlus.core.gui.machine; + +import org.lwjgl.opengl.GL11; + +import cpw.mods.fml.relauncher.Side; +import cpw.mods.fml.relauncher.SideOnly; + +import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.client.resources.I18n; +import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.util.ResourceLocation; + +import gtPlusPlus.core.container.Container_EggBox; +import gtPlusPlus.core.lib.CORE; +import gtPlusPlus.core.tileentities.general.TileEntityEggBox; + +@SideOnly(Side.CLIENT) +public class GUI_EggBox extends GuiContainer { + +	private static final ResourceLocation craftingTableGuiTextures = new ResourceLocation(CORE.MODID, "textures/gui/FishTrap.png"); + +	public GUI_EggBox(final InventoryPlayer player_inventory, final TileEntityEggBox te){ +		super(new Container_EggBox(player_inventory, te)); +	} + + +	@Override +	protected void drawGuiContainerForegroundLayer(final int i, final int j){ +		//this.fontRendererObj.drawString(I18n.format("Workbench", new Object[0]), 28, 6, 4210752); +	this.fontRendererObj.drawString(I18n.format("container.EggBox", new Object[0]), 8, this.ySize - 96 + 2, 4210752); + +	} + + +	@Override +	protected void drawGuiContainerBackgroundLayer(final float f, final int i, final int j){ +		GL11.glColor4f(1.0f, 1.0f, 1.0f, 1.0f); +		this.mc.renderEngine.bindTexture(craftingTableGuiTextures); +		final int x = (this.width - this.xSize) / 2; +		final int y = (this.height - this.ySize) / 2; +		this.drawTexturedModalRect(x, y, 0, 0, this.xSize, this.ySize); +	} + + +	//This method is called when the Gui is first called! +	@Override +	public void initGui() +	{ +		//You have to add this line for the Gui to function properly! +		super.initGui(); + +		//The parameters of GuiButton are(id, x, y, width, height, text); +		//this.buttonList.add(new GuiButton( 1, 367, 132, 18, 18, "X")); +		//this.buttonList.add(new GuiButton( 2, 385, 132, 18, 18, "Y")); +		//NOTE: the id always has to be different or else it might get called twice or never! + +		//Add any other buttons here too! +	} + +}
\ No newline at end of file | 
