equivalent-exchange-3/src/main/java/com/pahimar/ee3/handler/GuiHandler.java

21 lines
514 B
Java
Raw Normal View History

2013-12-21 23:16:55 +01:00
package com.pahimar.ee3.handler;
2013-08-23 16:59:50 +02:00
import cpw.mods.fml.common.network.IGuiHandler;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
2013-08-23 16:59:50 +02:00
2013-12-21 23:16:55 +01:00
public class GuiHandler implements IGuiHandler
{
2013-08-23 16:59:50 +02:00
@Override
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
{
2013-08-23 16:59:50 +02:00
return null;
}
@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
{
2013-08-23 16:59:50 +02:00
return null;
}
}