diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-23 01:27:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-23 01:27:45 +0300 |
commit | 9be90b76adb1518c4ffe0e365a18c5afcc3158f2 (patch) | |
tree | bbfea959321e05c329f18ac37757be91f38b9df8 /src/inventory.h | |
parent | 7f1053c5ce9e80485730290d002f7ae25db83996 (diff) | |
download | plus-9be90b76adb1518c4ffe0e365a18c5afcc3158f2.tar.gz plus-9be90b76adb1518c4ffe0e365a18c5afcc3158f2.tar.bz2 plus-9be90b76adb1518c4ffe0e365a18c5afcc3158f2.tar.xz plus-9be90b76adb1518c4ffe0e365a18c5afcc3158f2.zip |
Add item type to item object.
Diffstat (limited to 'src/inventory.h')
-rw-r--r-- | src/inventory.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/inventory.h b/src/inventory.h index cddc00709..8ce5cf2cc 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -88,6 +88,7 @@ class Inventory final * Adds a new item in a free slot. */ int addItem(const int id, + const int type, const int quantity, const uint8_t refine, const unsigned char color, @@ -102,6 +103,7 @@ class Inventory final */ void setItem(const int index, const int id, + const int type, const int quantity, const uint8_t refine, const unsigned char color, |