Package forestry.storage.gui

Examples of forestry.storage.gui.GuiBackpack


    case BackpackGUI:
      equipped = getBackpackItem(player);
      if (equipped == null)
        return null;
      return new GuiBackpack(new ContainerBackpack(player, new ItemInventory(ItemBackpack.class, Defaults.SLOTS_BACKPACK_DEFAULT, equipped)));

    case BackpackT2GUI:
      equipped = getBackpackItem(player);
      if (equipped == null)
        return null;
View Full Code Here

TOP

Related Classes of forestry.storage.gui.GuiBackpack

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.