Package tyrelion.character.Inventory

Examples of tyrelion.character.Inventory.InventoryField


       
        mousePressed = true;
        if (item != null) {
          if(split && item.getCount()>1){
            item.toggleShow(split);
            itemAtCursor = inventory.new InventoryField(item.getItem());
          } else{
            item.toggleShow(false);
            itemAtCursor = item;
          }
        }
View Full Code Here

TOP

Related Classes of tyrelion.character.Inventory.InventoryField

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.