root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/model/account/PlayerAccountData.java
| 318 | 993 | ||
|---|---|---|---|
18 | 18 | ||
19 | import java.sql.Timestamp; | 19 | import java.sql.Timestamp; |
20 | 20 | ||
21 | import com.aionemu.gameserver.model.gameobjects.player.Inventory; | 21 | import com.aionemu.gameserver.model.gameobjects.player.Storage; |
22 | import com.aionemu.gameserver.model.gameobjects.player.PlayerAppearance; | 22 | import com.aionemu.gameserver.model.gameobjects.player.PlayerAppearance; |
23 | import com.aionemu.gameserver.model.gameobjects.player.PlayerCommonData; | 23 | import com.aionemu.gameserver.model.gameobjects.player.PlayerCommonData; |
24 | 24 | ||
... | ... | ||
35 | { | 35 | { |
36 | private PlayerCommonData playerCommonData; | 36 | private PlayerCommonData playerCommonData; |
37 | private PlayerAppearance appereance; | 37 | private PlayerAppearance appereance; |
38 | private Inventory inventory; | 38 | private Storage inventory; |
39 | private Timestamp creationDate; | 39 | private Timestamp creationDate; |
40 | private Timestamp deletionDate; | 40 | private Timestamp deletionDate; |
41 | 41 | ||
42 | public PlayerAccountData(PlayerCommonData playerCommonData, PlayerAppearance appereance, Inventory inventory) | 42 | public PlayerAccountData(PlayerCommonData playerCommonData, PlayerAppearance appereance, Storage inventory) |
43 | { | 43 | { |
44 | this.playerCommonData = playerCommonData; | 44 | this.playerCommonData = playerCommonData; |
45 | this.appereance = appereance; | 45 | this.appereance = appereance; |
... | ... | ||
94 | /** | 94 | /** |
95 | * @return the inventory | 95 | * @return the inventory |
96 | */ | 96 | */ |
97 | public Inventory getInventory() | 97 | public Storage getInventory() |
98 | { | 98 | { |
99 | return inventory; | 99 | return inventory; |
100 | } | 100 | } |
Download diff