Delete dead IGuiHandler

This commit is contained in:
LexManos 2012-08-12 20:40:35 -07:00
parent 0451ea7618
commit 1c7d20ad36

View file

@ -1,25 +0,0 @@
package net.minecraftforge.common;
import net.minecraft.src.EntityPlayer;
import net.minecraft.src.World;
public interface IGuiHandler
{
/**
* Returns a Container to be displayed to the user.
* On the client side, this needs to return a instance of GuiScreen
* On the server side, this needs to return a instance of Container
*
* On the client, the player will always be a instance of EntityPlayerSP
* On the server, the player will always be a instance of EntityPlayerMP
*
* @param ID The Gui ID Number
* @param player The player viewing the Gui
* @param world The current world
* @param x X Position
* @param y Y Position
* @param z Z Position
* @return A GuiScreen/Container to be displayed to the user, null if none.
*/
public Object getGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z);
}