Package ru.vagrant_ai.questionmarkgame.util.list

Examples of ru.vagrant_ai.questionmarkgame.util.list.ITEM


          }
        }
        int x = 322, y = 220;
        for(Entry<ITEM, Integer> entry : list.entrySet())
        {
          ITEM item = entry.getKey();
          int quantity = entry.getValue();
          item.getIcon().draw(x, y);
          if (quantity > 1)
            Text.drawString(20, x+12, y+12, ""+quantity, Color.red);
          x += 24;
          if (x >= 586)
          {
View Full Code Here

TOP

Related Classes of ru.vagrant_ai.questionmarkgame.util.list.ITEM

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.