33 lines
581 B
Java
33 lines
581 B
Java
package resonantinduction.core.prefab;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.world.World;
|
|
import cpw.mods.fml.common.network.IGuiHandler;
|
|
|
|
public abstract class ProxyBase implements IGuiHandler
|
|
{
|
|
public void preInit()
|
|
{
|
|
}
|
|
|
|
public void init()
|
|
{
|
|
}
|
|
|
|
public void postInit()
|
|
{
|
|
}
|
|
|
|
@Override
|
|
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
}
|