Package appeng.tile.inventory

Examples of appeng.tile.inventory.AppEngInternalInventory


  public ContainerCraftAmount(InventoryPlayer ip, ITerminalHost te) {
    super( ip, te );
    priHost = te;

    craftingItem = new SlotInaccessible( new AppEngInternalInventory( null, 1 ), 0, 34, 53 );
    addSlotToContainer( craftingItem );
  }
View Full Code Here


    final long which = autoBase++;
    final String unlocalizedName;

    public InvTracker(DualityInterface dual, IInventory patterns, String unlocalizedName) {
      server = patterns;
      client = new AppEngInternalInventory( null, server.getSizeInventory() );
      this.unlocalizedName = unlocalizedName;
      this.sortBy = dual.getSortValue();
    }
View Full Code Here

  final IGridHost gh;

  public NetworkToolViewer(ItemStack is, IGridHost gHost) {
    this.is = is;
    gh = gHost;
    inv = new AppEngInternalInventory( null, 9 );
    if ( is.hasTagCompound() ) // prevent crash when opening network status screen.
      inv.readFromNBT( Platform.openNbtData( is ), "inv" );
  }
View Full Code Here

  final public AppEngInternalInventory inv;
  final public long id;
  final public long sortBy;

  public ClientDCInternalInv(int size, long id, long sortBy, String unlocalizedName) {
    inv = new AppEngInternalInventory( null, size );
    this.unlocalizedName = unlocalizedName;
    this.id = id;
    this.sortBy = sortBy;
  }
View Full Code Here

TOP

Related Classes of appeng.tile.inventory.AppEngInternalInventory

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.