blob: ebfcd10bdaa5bec51008605444bcf6e275f91170 (
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);
}
}
|