diff options
| author | Foghrye4 <foghrye4@gmail.com> | 2017-06-17 08:12:18 +0300 |
|---|---|---|
| committer | Foghrye4 <foghrye4@gmail.com> | 2017-06-17 08:12:18 +0300 |
| commit | dc3df3edd5843bde0c1335d6a8e460b2c832aa48 (patch) | |
| tree | af13bfeee567f2351e35e1ef176d168fe37c8aac /ihl/worldgen/ores/DebugScannerContainer.java | |
| parent | 1da8dcd58647e34c9af94ceeecaeaf3b0d08c48c (diff) | |
full project files
Diffstat (limited to 'ihl/worldgen/ores/DebugScannerContainer.java')
| -rw-r--r-- | ihl/worldgen/ores/DebugScannerContainer.java | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/ihl/worldgen/ores/DebugScannerContainer.java b/ihl/worldgen/ores/DebugScannerContainer.java deleted file mode 100644 index 1413ddb..0000000 --- a/ihl/worldgen/ores/DebugScannerContainer.java +++ /dev/null @@ -1,49 +0,0 @@ -package ihl.worldgen.ores;
-
-import ic2.core.ContainerBase;
-import ic2.core.slot.SlotInvSlot;
-import net.minecraft.entity.player.EntityPlayer;
-import net.minecraft.inventory.Slot;
-
-public class DebugScannerContainer extends ContainerBase<DebugScannerTileEntity> {
-
- protected DebugScannerTileEntity tileEntity;
- public int lastFluidAmount = -1;
- public int lastFuel = -1;
- public short lastProgress = -1;
- public final static int height=256;
- public final static int width=248;
-
- public DebugScannerContainer(EntityPlayer entityPlayer, DebugScannerTileEntity tileEntity1){
- super(tileEntity1);
- this.tileEntity = tileEntity1;
- int col,row;
-
- for (row = 0; row < 3; ++row)
- {
- for (col = 0; col < 13; ++col)
- {
- int slotnum = col + row * 13 + 9;
- if(slotnum < entityPlayer.inventory.getSizeInventory()-4)
- {
- this.addSlotToContainer(new Slot(entityPlayer.inventory, slotnum, 8 + col * 18, 196 + row * 18));
- }
- else
- {
- break;
- }
- }
- }
- for (col = 0; col < 9; ++col)
- {
- this.addSlotToContainer(new Slot(entityPlayer.inventory, col, 80 + col * 18, 232));
- }
- this.addSlotToContainer(new SlotInvSlot(tileEntity1.itemsSlot, 0, 8, 8));
- this.addSlotToContainer(new SlotInvSlot(tileEntity1.itemsSlot, 1, 8+18, 8));
- }
-
- @Override
- public boolean canInteractWith(EntityPlayer var1) {
- return tileEntity.isUseableByPlayer(var1);
- }
-}
|
