mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 08:29:09 +01:00
3f70981076
Crafting, Textures, In- and Output etc. done!
28 lines
No EOL
937 B
Java
28 lines
No EOL
937 B
Java
package ellpeck.someprettyrandomstuff.inventory;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.client.gui.inventory.GuiContainer;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.util.ResourceLocation;
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public class GuiCrafter extends GuiContainer{
|
|
|
|
private static final ResourceLocation resLoc = new ResourceLocation("textures/gui/container/crafting_table.png");
|
|
|
|
public GuiCrafter(EntityPlayer player){
|
|
super(new ContainerCrafter(player));
|
|
|
|
this.xSize = 176;
|
|
this.ySize = 166;
|
|
}
|
|
|
|
@Override
|
|
public void drawGuiContainerBackgroundLayer(float f, int x, int y){
|
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
|
this.mc.getTextureManager().bindTexture(resLoc);
|
|
this.drawTexturedModalRect(this.guiLeft, this.guiTop, 0, 0, this.xSize, this.ySize);
|
|
}
|
|
} |