diff options
author | GlodBlock <1356392126@qq.com> | 2021-08-16 22:46:40 +0800 |
---|---|---|
committer | GlodBlock <1356392126@qq.com> | 2021-08-16 22:46:40 +0800 |
commit | c6daf6b4d70ccde55c2a944036cb13656966e991 (patch) | |
tree | fe57ed6b65ed9e4c601445eff0627e19fdb0a586 /src/main/java/GoodGenerator/Common/Container/NeutronSensorGUIContainer.java | |
parent | 845cce81a82e1cfd9d404fa1b13490acff96bf35 (diff) | |
download | GT5-Unofficial-c6daf6b4d70ccde55c2a944036cb13656966e991.tar.gz GT5-Unofficial-c6daf6b4d70ccde55c2a944036cb13656966e991.tar.bz2 GT5-Unofficial-c6daf6b4d70ccde55c2a944036cb13656966e991.zip |
add Neutron Activator related blocks
Diffstat (limited to 'src/main/java/GoodGenerator/Common/Container/NeutronSensorGUIContainer.java')
-rw-r--r-- | src/main/java/GoodGenerator/Common/Container/NeutronSensorGUIContainer.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/java/GoodGenerator/Common/Container/NeutronSensorGUIContainer.java b/src/main/java/GoodGenerator/Common/Container/NeutronSensorGUIContainer.java new file mode 100644 index 0000000000..0c243b0a69 --- /dev/null +++ b/src/main/java/GoodGenerator/Common/Container/NeutronSensorGUIContainer.java @@ -0,0 +1,12 @@ +package GoodGenerator.Common.Container; + +import gregtech.api.gui.GT_ContainerMetaTile_Machine; +import gregtech.api.interfaces.tileentity.IGregTechTileEntity; +import net.minecraft.entity.player.InventoryPlayer; + +public class NeutronSensorGUIContainer extends GT_ContainerMetaTile_Machine { + + public NeutronSensorGUIContainer(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity) { + super(aInventoryPlayer, aTileEntity); + } +} |