コード例 #1
0
ファイル: CashShop.java プロジェクト: jerbe/Acernis-v144
 public CashShop(int accountId, int characterId, int jobType) throws SQLException {
   this.accountId = accountId;
   this.characterId = characterId;
   for (Pair<Item, MapleInventoryType> item : factory.loadItems(false, accountId).values()) {
     inventory.add(item.getLeft());
   }
 }