Mekanism-tilera-Edition/src/minecraft/mekanism/client/GuiEnrichmentChamber.java
Aidan Brady 16899371a0 v5.5.4 Pre-Release #1
*SideOnly to all client-only classes.
*Proxied electric chest GUI.
*Overhauled sound system to not require direct TileEntity accesses.
*Fixed sounds continuing after server disconnect.
*Fixed /mk version command.
2013-04-13 10:33:37 -04:00

15 lines
421 B
Java

package mekanism.client;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import mekanism.common.TileEntityElectricMachine;
import net.minecraft.entity.player.InventoryPlayer;
@SideOnly(Side.CLIENT)
public class GuiEnrichmentChamber extends GuiElectricMachine
{
public GuiEnrichmentChamber(InventoryPlayer inventory, TileEntityElectricMachine tentity)
{
super(inventory, tentity);
}
}