summaryrefslogtreecommitdiff
path: root/src/item.cpp
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-07-31 21:29:00 +0000
committerGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-07-31 21:29:00 +0000
commit36d28236321b6a2824ad4f394faeabbf79626808 (patch)
tree7d2475acf84852f2a21cc29eecbf7524cd58ff52 /src/item.cpp
parentc9f930c759004e179545c3b82992e3f8a12345f2 (diff)
downloadmana-client-36d28236321b6a2824ad4f394faeabbf79626808.tar.gz
mana-client-36d28236321b6a2824ad4f394faeabbf79626808.tar.bz2
mana-client-36d28236321b6a2824ad4f394faeabbf79626808.tar.xz
mana-client-36d28236321b6a2824ad4f394faeabbf79626808.zip
Removed legacy inventory code. Added display of equipment.
Diffstat (limited to 'src/item.cpp')
-rw-r--r--src/item.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/item.cpp b/src/item.cpp
index 3cea30e5..487f17da 100644
--- a/src/item.cpp
+++ b/src/item.cpp
@@ -21,3 +21,13 @@
* $Id$
*/
+#include "item.h"
+
+Item::Item(int id, int quantity) :
+ mId(id),
+ mQuantity(quantity)
+{
+ // Either type or slot, both are unused anyway. -- silene
+ mEquipment = getInfo().getType();
+}
+