add solderer, processors, silicon, quartz enriched iron
This commit is contained in:
28
src/main/java/storagecraft/container/ContainerSolderer.java
Normal file
28
src/main/java/storagecraft/container/ContainerSolderer.java
Normal 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));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user