diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-20 19:24:55 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-20 19:24:55 +0300 |
commit | 60231aaaccfab29e531b633e09ae13bf901a1e5a (patch) | |
tree | d479b54eed6f541fa65df43a7e374786e3c7292f /src/net/ea/inventoryhandler.h | |
parent | 961b1482f903c7f583eac639e7bf7b98e8d544c6 (diff) | |
download | plus-60231aaaccfab29e531b633e09ae13bf901a1e5a.tar.gz plus-60231aaaccfab29e531b633e09ae13bf901a1e5a.tar.bz2 plus-60231aaaccfab29e531b633e09ae13bf901a1e5a.tar.xz plus-60231aaaccfab29e531b633e09ae13bf901a1e5a.zip |
Move inventoryitem into separate file.
Diffstat (limited to 'src/net/ea/inventoryhandler.h')
-rw-r--r-- | src/net/ea/inventoryhandler.h | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/src/net/ea/inventoryhandler.h b/src/net/ea/inventoryhandler.h index 670153aed..cd32f28a6 100644 --- a/src/net/ea/inventoryhandler.h +++ b/src/net/ea/inventoryhandler.h @@ -35,6 +35,7 @@ #include "net/inventoryhandler.h" #include "net/ea/equipbackend.h" +#include "net/ea/inventoryitem.h" #include <vector> #include <queue> @@ -47,32 +48,6 @@ namespace Net namespace Ea { -/** - * Used to cache storage data until we get size data for it. - */ -class InventoryItem -{ - public: - int slot; - int id; - int quantity; - int refine; - unsigned char color; - bool equip; - - InventoryItem(const int slot0, const int id0, const int quantity0, - const int refine0, const unsigned char color0, - const bool equip0) : - slot(slot0), - id(id0), - quantity(quantity0), - refine(refine0), - color(color0), - equip(equip0) - { - } -}; - typedef std::vector<InventoryItem> InventoryItems; class InventoryHandler : public Net::InventoryHandler |