Package net.mcft.copy.betterstorage.inventory

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


public class ContainerKeyring extends ContainerBetterStorage {
 
  private final int protectedIndex;
 
  public ContainerKeyring(EntityPlayer player, String title, int protectedIndex) {
    super(player, new InventoryKeyring(player, title), 9, 1);
    this.protectedIndex = protectedIndex;
    // We need to do this here instead of the super constructor,
    // because otherwise we wouldn't be able to set protectedIndex.
    super.setupInventoryContainer();
    super.setupInventoryPlayer();
View Full Code Here

TOP

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

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.