Package net.mcft.copy.betterstorage.inventory

Examples of net.mcft.copy.betterstorage.inventory.InventoryCraftingStation


  public InventoryTileEntity makePlayerInventory() {
    // Workaround because instance variables get initialized AFTER the
    // parent constructor. This gets called IN the parent constructor.
    crafting = new ItemStack[9];
    output = new ItemStack[9];
    stationInventory = new InventoryCraftingStation(this);
    return new InventoryTileEntity(this, stationInventory);
  }
View Full Code Here


public class GuiCraftingStation extends GuiBetterStorage {
 
  public final InventoryCraftingStation inv;
 
  public GuiCraftingStation(EntityPlayer player, String title, boolean localized) {
    super(new ContainerCraftingStation(player, new InventoryCraftingStation((localized ? title : StatCollector.translateToLocal(title)))));
    inv = (InventoryCraftingStation)((ContainerCraftingStation)inventorySlots).inventory;
  }
View Full Code Here

TOP

Related Classes of net.mcft.copy.betterstorage.inventory.InventoryCraftingStation

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.