Package forestry.core.gui

Examples of forestry.core.gui.ContainerNaturalistInventory


  }

  public GuiNaturalistInventory getNaturalistChestGui(String rootUID, EntityPlayer player, World world, int x, int y, int z, int page) {
    TileNaturalistChest tile = (TileNaturalistChest) getTileForestry(world, x, y, z);
    ISpeciesRoot speciesRoot = AlleleManager.alleleRegistry.getSpeciesRoot(rootUID);
    return new GuiNaturalistInventory(speciesRoot, player, new ContainerNaturalistInventory(speciesRoot, player.inventory, tile, page, 25), tile, page, 5);
  }
View Full Code Here


  }

  public ContainerNaturalistInventory getNaturalistChestContainer(String rootUID, EntityPlayer player, World world, int x, int y, int z, int page) {
    ISpeciesRoot speciesRoot = AlleleManager.alleleRegistry.getSpeciesRoot(rootUID);
    speciesRoot.getBreedingTracker(world, player.getGameProfile()).synchToPlayer(player);
    return new ContainerNaturalistInventory(speciesRoot,
        player.inventory, (TileNaturalistChest) getTileForestry(world, x, y, z), page, 25);
  }
View Full Code Here

TOP

Related Classes of forestry.core.gui.ContainerNaturalistInventory

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.