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/inventoryitem.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/inventoryitem.h')
-rw-r--r-- | src/net/ea/inventoryitem.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/net/ea/inventoryitem.h b/src/net/ea/inventoryitem.h new file mode 100644 index 000000000..6b15a3fa2 --- /dev/null +++ b/src/net/ea/inventoryitem.h @@ -0,0 +1,57 @@ +/* + * The ManaPlus Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef NET_EA_INVENTORYITEM_H +#define NET_EA_INVENTORYITEM_H + +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) + { + } +}; + +} // namespace Ea + +#endif // NET_EA_INVENTORYITEM_H |