blob: 0c243b0a693e2c65e833889eecd3e50735e2d864 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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);
}
}
|