Package crazypants.util

Examples of crazypants.util.ArrayInventory


    this.world = world;
    if(ta instanceof TileEntity) {
      te = ((TileEntity) ta);
    }

    ArrayInventory arrInv = new PasswordInventory(ta.getPassword(), true);   
    int x = 44;
    int y = 73;
    for (int i = 0; i < 5; i++) {
      addSlotToContainer(new TemplateSlot(arrInv, i, x, y));
      x += 18;
View Full Code Here


  boolean dirty = false;

  public ContainerTravelAuth(InventoryPlayer playerInv) {

    ArrayInventory arrInv = new ArrayInventory(enteredPassword) {

      @Override
      public void markDirty() {
        super.markDirty();
        dirty = true;
View Full Code Here

TOP

Related Classes of crazypants.util.ArrayInventory

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.