diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-17 22:11:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-17 22:11:13 +0300 |
commit | 9a40e1202946e3384500da28668a52d28ad377f4 (patch) | |
tree | 6b031263af767043249c8aa8b733e1cc84a0aa85 /src/net/ea/inventoryhandler.h | |
parent | cd7c69edecf4b04ad7c2b40092d29b0444acfa28 (diff) | |
download | plus-9a40e1202946e3384500da28668a52d28ad377f4.tar.gz plus-9a40e1202946e3384500da28668a52d28ad377f4.tar.bz2 plus-9a40e1202946e3384500da28668a52d28ad377f4.tar.xz plus-9a40e1202946e3384500da28668a52d28ad377f4.zip |
Add static in inventoryhandler.
Diffstat (limited to 'src/net/ea/inventoryhandler.h')
-rw-r--r-- | src/net/ea/inventoryhandler.h | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/src/net/ea/inventoryhandler.h b/src/net/ea/inventoryhandler.h index e0bfb6a1f..f82cf5780 100644 --- a/src/net/ea/inventoryhandler.h +++ b/src/net/ea/inventoryhandler.h @@ -43,6 +43,7 @@ namespace Ea { typedef std::vector<InventoryItem> InventoryItems; +typedef std::queue<int> PickupQueue; class InventoryHandler notfinal : public Net::InventoryHandler { @@ -86,15 +87,15 @@ class InventoryHandler notfinal : public Net::InventoryHandler static void processItemUseResponse(Net::MessageIn &msg); - void processPlayerStorageStatus(Net::MessageIn &msg); + static void processPlayerStorageStatus(Net::MessageIn &msg); - void processPlayerStorageRemove(Net::MessageIn &msg); + static void processPlayerStorageRemove(Net::MessageIn &msg); - void processPlayerStorageClose(Net::MessageIn &msg); + static void processPlayerStorageClose(Net::MessageIn &msg); static void processPlayerAttackRange(Net::MessageIn &msg); - void processPlayerArrowEquip(Net::MessageIn &msg); + static void processPlayerArrowEquip(Net::MessageIn &msg); void closeStorage() override final; @@ -106,14 +107,12 @@ class InventoryHandler notfinal : public Net::InventoryHandler protected: InventoryHandler(); - EquipBackend mEquips; - InventoryItems mInventoryItems; - Inventory *mStorage; - InventoryWindow *mStorageWindow; - bool mDebugInventory; - - typedef std::queue<int> PickupQueue; - PickupQueue mSentPickups; + static EquipBackend mEquips; + static InventoryItems mInventoryItems; + static Inventory *mStorage; + static InventoryWindow *mStorageWindow; + static PickupQueue mSentPickups; + static bool mDebugInventory; }; } // namespace Ea |