use of net.dries007.tfc.client.gui.GuiKnapping in project firmalife by eerussianguy.
the class FLGuiHandler method getClientGuiElement.
@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
Container container = getServerGuiElement(ID, player, world, x, y, z);
Type type = Type.valueOf(ID);
switch(type) {
case KNAPPING_PUMPKIN:
return new GuiKnapping(container, player, KnappingType.LEATHER, PUMPKIN_TEXTURE);
default:
return null;
}
}
Aggregations