add solderer, processors, silicon, quartz enriched iron

This commit is contained in:
Raoul Van den Berge
2015-12-23 14:12:23 +01:00
parent d0fbc2f540
commit 06fa4555cb
32 changed files with 785 additions and 58 deletions

View File

@@ -0,0 +1,28 @@
package storagecraft.container;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Slot;
import storagecraft.container.slot.SlotOutput;
import storagecraft.tile.TileSolderer;
public class ContainerSolderer extends ContainerBase
{
public ContainerSolderer(EntityPlayer player, TileSolderer solderer)
{
super(player);
addPlayerInventory(8, 95);
int x = 44;
int y = 20;
for (int i = 0; i < 3; ++i)
{
addSlotToContainer(new Slot(solderer, i, x, y));
y += 18;
}
addSlotToContainer(new SlotOutput(solderer, 3, 134, 38));
}
}