Added gui calls to all new machines

Added new gui to matter fab
Added container and slots to matter fab
This commit is contained in:
Gig 2015-04-28 17:58:01 +01:00
parent 30ceed031c
commit 7c1e72076b
12 changed files with 282 additions and 2 deletions

View file

@ -0,0 +1,19 @@
package techreborn.client.container;
import techreborn.tiles.TileGrinder;
import net.minecraft.entity.player.EntityPlayer;
public class ContainerGrinder extends TechRebornContainer{
public ContainerGrinder(TileGrinder tileEntity, EntityPlayer player)
{
// TODO Auto-generated constructor stub
}
@Override
public boolean canInteractWith(EntityPlayer p_75145_1_)
{
return true;
}
}