diff options
Diffstat (limited to 'src/resources/iteminfo.h')
-rw-r--r-- | src/resources/iteminfo.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index eb22b10d5..4c8ece517 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -96,6 +96,12 @@ class ItemInfo final void setType(const ItemType::Type type) { mType = type; } + void setUseButton(const std::string &str) + { mUseButton = str; } + + const std::string &getUseButton() const A_WARN_UNUSED + { return mUseButton; } + ItemType::Type getType() const A_WARN_UNUSED { return mType; } @@ -267,6 +273,7 @@ class ItemInfo final std::string mName; std::string mDescription; /**< Short description. */ std::string mEffect; /**< Description of effects. */ + std::string mUseButton; ItemType::Type mType; /**< Item type. */ int mWeight; /**< Weight in grams. */ int mView; /**< Item ID of how this item looks. */ |