Package net.mcft.copy.betterstorage.container

Examples of net.mcft.copy.betterstorage.container.ContainerCraftingStation


    return new InventoryTileEntity(this, stationInventory);
  }
 
  @Override
  public ContainerBetterStorage createContainer(EntityPlayer player) {
    return new ContainerCraftingStation(player, getPlayerInventory());
  }
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.container.ContainerCraftingStation

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.