diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-10 13:38:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-10 13:38:15 +0300 |
commit | 3d2779c31490e4ac32bf72380703b9785b4e00be (patch) | |
tree | 5e031ea09c985af905973899fab78049d08475e3 /src/resources/beinginfo.h | |
parent | 44f9d02a86b4d2457965774f9dd6be9ce069d6ce (diff) | |
download | plus-3d2779c31490e4ac32bf72380703b9785b4e00be.tar.gz plus-3d2779c31490e4ac32bf72380703b9785b4e00be.tar.bz2 plus-3d2779c31490e4ac32bf72380703b9785b4e00be.tar.xz plus-3d2779c31490e4ac32bf72380703b9785b4e00be.zip |
Add support for change text in pet menu item "Return to egg".
Diffstat (limited to 'src/resources/beinginfo.h')
-rw-r--r-- | src/resources/beinginfo.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/resources/beinginfo.h b/src/resources/beinginfo.h index 942644708..e98d48a41 100644 --- a/src/resources/beinginfo.h +++ b/src/resources/beinginfo.h @@ -327,6 +327,12 @@ class BeingInfo final const std::vector<BeingMenuItem> &getMenu() const A_CONST; + void setString(const int idx, + const std::string &value) + { mStrings[idx] = value; } + + std::string getString(const int idx) const A_WARN_UNUSED; + static void init(); static void clear(); @@ -339,6 +345,7 @@ class BeingInfo final ItemSoundEvents mSounds; Attacks mAttacks; std::vector<BeingMenuItem> mMenu; + std::map<int, std::string> mStrings; unsigned char mBlockWalkMask; BlockTypeT mBlockType; const std::map <ItemColor, ColorDB::ItemColorData> *mColors; |