33 lines
972 B
Java
33 lines
972 B
Java
|
package appeng.client.gui.implementations;
|
||
|
|
||
|
import net.minecraft.entity.player.InventoryPlayer;
|
||
|
import appeng.client.gui.AEBaseGui;
|
||
|
import appeng.container.implementations.ContainerMAC;
|
||
|
import appeng.core.localization.GuiText;
|
||
|
import appeng.tile.crafting.TileMolecularAssembler;
|
||
|
|
||
|
public class GuiMAC extends AEBaseGui
|
||
|
{
|
||
|
|
||
|
public GuiMAC(InventoryPlayer inventoryPlayer, TileMolecularAssembler te) {
|
||
|
super( new ContainerMAC( inventoryPlayer, te ) );
|
||
|
this.ySize = 197;
|
||
|
this.xSize = 211;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void drawBG(int offsetX, int offsetY, int mouseX, int mouseY)
|
||
|
{
|
||
|
bindTexture( "guis/mac.png" );
|
||
|
this.drawTexturedModalRect( offsetX, offsetY, 0, 0, xSize, ySize );
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void drawFG(int offsetX, int offsetY, int mouseX, int mouseY)
|
||
|
{
|
||
|
fontRendererObj.drawString( getGuiDisplayName( GuiText.MolecularAssembler.getLocal() ), 8, 6, 4210752 );
|
||
|
fontRendererObj.drawString( GuiText.inventory.getLocal(), 8, ySize - 96 + 3, 4210752 );
|
||
|
}
|
||
|
|
||
|
}
|