diff options
Diffstat (limited to 'src/item.h')
-rw-r--r-- | src/item.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/item.h b/src/item.h index 7df66f4b9..9f0772286 100644 --- a/src/item.h +++ b/src/item.h @@ -215,6 +215,12 @@ class Item notfinal int getType() const A_WARN_UNUSED { return mType; } + void setTag(const int tag) + { mTag = tag; } + + int getTag() const A_WARN_UNUSED + { return mTag; } + void addCard(const int card); void updateColor(); @@ -231,6 +237,7 @@ class Item notfinal uint8_t mRefine; /**< Item refine level. */ int mInvIndex; /**< Inventory index. */ int mType; /**< Item type. */ + int mTag; Equipm mEquipment; /**< Item is equipment. */ Equipped mEquipped; /**< Item is equipped. */ bool mInEquipment; /**< Item is in equipment */ |