Made it work, need to figure out the ic2 cells, for now it uses resin

This commit is contained in:
Modmuss50 2015-04-13 20:36:16 +01:00
parent 1824e0bf36
commit 822879a6b6
4 changed files with 123 additions and 61 deletions

View file

@ -11,10 +11,13 @@ public class GuiCentrifuge extends GuiContainer {
private static final ResourceLocation texture = new ResourceLocation("techreborn", "textures/gui/centrifuge.png");
TileCentrifuge centrifuge;
public GuiCentrifuge(EntityPlayer player, TileCentrifuge tileCentrifuge) {
super(new ContainerCentrifuge(tileCentrifuge, player));
this.xSize = 176;
this.ySize = 167;
centrifuge = tileCentrifuge;
}
@Override
@ -29,5 +32,6 @@ public class GuiCentrifuge extends GuiContainer {
{
this.fontRendererObj.drawString("Centrifuge", 110, 6, 4210752);
this.fontRendererObj.drawString(I18n.format("container.inventory", new Object[0]), 8, this.ySize - 96 + 2, 4210752);
this.fontRendererObj.drawString(centrifuge.tickTime + " " + centrifuge.isRunning, 110, this.ySize - 96 + 2, 4210752);
}
}