electrodynamics/src/resonantinduction/ClientProxy.java

22 lines
337 B
Java
Raw Normal View History

2013-08-02 02:48:07 +02:00
/**
*
*/
package resonantinduction;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
/**
* @author Calclavia
*
*/
public class ClientProxy extends CommonProxy
{
@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
{
return null;
}
}