Basic Block/Gui/Tile registertion work for Inscriber is done.

This commit is contained in:
AlgorithmX2
2014-03-07 00:15:54 -06:00
parent f918147b46
commit cd51b00b31
7 changed files with 299 additions and 26 deletions
@@ -0,0 +1,19 @@
package appeng.container.implementations;
import net.minecraft.entity.player.InventoryPlayer;
import appeng.container.AEBaseContainer;
import appeng.tile.misc.TileInscriber;
public class ContainerInscriber extends AEBaseContainer
{
TileInscriber myte;
public ContainerInscriber(InventoryPlayer ip, TileInscriber te) {
super( ip, te, null );
myte = te;
bindPlayerInventory( ip, 0, 176 - /* height of playerinventory */82 );
}
}