/* * Minecraft Forge * Copyright (c) 2016. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation version 2.1 * of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package net.minecraftforge.fml.common.network; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.world.World; import javax.annotation.Nullable; public interface IGuiHandler { /** * Returns a Server side Container to be displayed to the user. * * @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. */ @Nullable Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z); /** * 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 * * @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. */ @Nullable Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z); }