aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/gui/GT_Container_3by3.java
diff options
context:
space:
mode:
authorShawn Buckley <shawntbuckley@gmail.com>2015-10-21 22:06:25 -0400
committerShawn Buckley <shawntbuckley@gmail.com>2015-10-21 22:06:25 -0400
commit9353aa711b1d750ff945acdfed2d3b956291b615 (patch)
treed6ca62ab093dede52afef0d82ac29d32c56fb29b /src/main/java/gregtech/api/gui/GT_Container_3by3.java
parent445e6c3f25714ecf15c07dcd3462375d65b6dc92 (diff)
downloadGT5-Unofficial-9353aa711b1d750ff945acdfed2d3b956291b615.tar.gz
GT5-Unofficial-9353aa711b1d750ff945acdfed2d3b956291b615.tar.bz2
GT5-Unofficial-9353aa711b1d750ff945acdfed2d3b956291b615.zip
Reformat code
Diffstat (limited to 'src/main/java/gregtech/api/gui/GT_Container_3by3.java')
-rw-r--r--src/main/java/gregtech/api/gui/GT_Container_3by3.java42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/main/java/gregtech/api/gui/GT_Container_3by3.java b/src/main/java/gregtech/api/gui/GT_Container_3by3.java
index 9206116de1..aa44556ff5 100644
--- a/src/main/java/gregtech/api/gui/GT_Container_3by3.java
+++ b/src/main/java/gregtech/api/gui/GT_Container_3by3.java
@@ -5,31 +5,31 @@ import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.inventory.Slot;
public class GT_Container_3by3 extends GT_ContainerMetaTile_Machine {
-
- public GT_Container_3by3(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity) {
- super(aInventoryPlayer, aTileEntity);
- }
-
- @Override
+
+ public GT_Container_3by3(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity) {
+ super(aInventoryPlayer, aTileEntity);
+ }
+
+ @Override
public void addSlots(InventoryPlayer aInventoryPlayer) {
- addSlotToContainer(new Slot(mTileEntity, 0, 62, 17));
- addSlotToContainer(new Slot(mTileEntity, 1, 80, 17));
- addSlotToContainer(new Slot(mTileEntity, 2, 98, 17));
- addSlotToContainer(new Slot(mTileEntity, 3, 62, 35));
- addSlotToContainer(new Slot(mTileEntity, 4, 80, 35));
- addSlotToContainer(new Slot(mTileEntity, 5, 98, 35));
- addSlotToContainer(new Slot(mTileEntity, 6, 62, 53));
- addSlotToContainer(new Slot(mTileEntity, 7, 80, 53));
- addSlotToContainer(new Slot(mTileEntity, 8, 98, 53));
+ addSlotToContainer(new Slot(mTileEntity, 0, 62, 17));
+ addSlotToContainer(new Slot(mTileEntity, 1, 80, 17));
+ addSlotToContainer(new Slot(mTileEntity, 2, 98, 17));
+ addSlotToContainer(new Slot(mTileEntity, 3, 62, 35));
+ addSlotToContainer(new Slot(mTileEntity, 4, 80, 35));
+ addSlotToContainer(new Slot(mTileEntity, 5, 98, 35));
+ addSlotToContainer(new Slot(mTileEntity, 6, 62, 53));
+ addSlotToContainer(new Slot(mTileEntity, 7, 80, 53));
+ addSlotToContainer(new Slot(mTileEntity, 8, 98, 53));
}
-
- @Override
+
+ @Override
public int getSlotCount() {
- return 9;
+ return 9;
}
-
- @Override
+
+ @Override
public int getShiftClickSlotCount() {
- return 9;
+ return 9;
}
}