TechReborn/src/main/java/techreborn/client/container/ContainerChunkloader.java

42 lines
770 B
Java
Raw Normal View History

2015-04-28 22:09:38 +02:00
package techreborn.client.container;
import techreborn.tiles.TileChunkLoader;
import net.minecraft.entity.player.EntityPlayer;
2015-04-28 22:41:10 +02:00
import net.minecraft.inventory.Slot;
2015-04-28 22:09:38 +02:00
public class ContainerChunkloader extends TechRebornContainer{
2015-04-28 22:41:10 +02:00
EntityPlayer player;
2015-04-28 22:09:38 +02:00
public ContainerChunkloader(TileChunkLoader tilechunkloader, EntityPlayer player)
{
2015-04-28 22:41:10 +02:00
this.player = player;
int i;
for (i = 0; i < 3; ++i)
{
for (int j = 0; j < 9; ++j)
{
this.addSlotToContainer(new Slot(player.inventory, j + i * 9
+ 9, 8 + j * 18, 84 + i * 18));
}
}
for (i = 0; i < 9; ++i)
{
this.addSlotToContainer(new Slot(player.inventory, i, 8 + i * 18,
142));
}
2015-04-28 22:09:38 +02:00
}
@Override
public boolean canInteractWith(EntityPlayer p_75145_1_)
{
return true;
}
}