Interface Part Gui

This commit is contained in:
AlgorithmX2
2014-01-05 02:44:52 -06:00
parent 1d068b7a93
commit d6066fd9b9
2 changed files with 9 additions and 8 deletions
+2 -2
View File
@@ -4,12 +4,12 @@ import net.minecraft.entity.player.InventoryPlayer;
import appeng.client.gui.AEBaseGui;
import appeng.container.implementations.ContainerInterface;
import appeng.core.localization.GuiText;
import appeng.tile.misc.TileInterface;
import appeng.helpers.IInterfaceHost;
public class GuiInterface extends AEBaseGui
{
public GuiInterface(InventoryPlayer inventoryPlayer, TileInterface te) {
public GuiInterface(InventoryPlayer inventoryPlayer, IInterfaceHost te) {
super( new ContainerInterface( inventoryPlayer, te ) );
this.ySize = 211;
}