Package org.moparscape.msc.ls.model

Examples of org.moparscape.msc.ls.model.BankItem


      }

      int bankCount = save.getBankCount();
      packet.addShort(bankCount);
      for (int i = 0; i < bankCount; i++) {
        BankItem item = save.getBankItem(i);
        packet.addShort(item.getID());
        packet.addInt(item.getAmount());
      }

      int friendCount = save.getFriendCount();
      packet.addShort(friendCount);
      for (int i = 0; i < friendCount; i++) {
View Full Code Here

TOP

Related Classes of org.moparscape.msc.ls.model.BankItem

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.