2013-08-27 00:49:32 +02:00
|
|
|
package mekanism.client.gui;
|
2013-01-23 21:42:45 +01:00
|
|
|
|
2013-04-13 16:33:37 +02:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2013-08-27 00:49:32 +02:00
|
|
|
import mekanism.common.tileentity.TileEntityAdvancedElectricMachine;
|
2013-01-23 21:42:45 +01:00
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
|
2013-04-13 16:33:37 +02:00
|
|
|
@SideOnly(Side.CLIENT)
|
2013-01-23 21:42:45 +01:00
|
|
|
public class GuiPurificationChamber extends GuiAdvancedElectricMachine
|
|
|
|
{
|
|
|
|
public GuiPurificationChamber(InventoryPlayer inventory, TileEntityAdvancedElectricMachine tentity)
|
|
|
|
{
|
|
|
|
super(inventory, tentity);
|
|
|
|
}
|
|
|
|
}
|