2013-08-26 18:49:32 -04:00
|
|
|
package mekanism.client.gui;
|
2013-01-23 15:42:45 -05:00
|
|
|
|
2013-04-13 10:33:37 -04:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2013-08-26 18:49:32 -04:00
|
|
|
import mekanism.common.tileentity.TileEntityElectricMachine;
|
2013-01-23 15:42:45 -05:00
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
|
2013-04-13 10:33:37 -04:00
|
|
|
@SideOnly(Side.CLIENT)
|
2013-01-23 15:42:45 -05:00
|
|
|
public class GuiEnrichmentChamber extends GuiElectricMachine
|
|
|
|
{
|
|
|
|
public GuiEnrichmentChamber(InventoryPlayer inventory, TileEntityElectricMachine tentity)
|
|
|
|
{
|
|
|
|
super(inventory, tentity);
|
|
|
|
}
|
|
|
|
}
|