diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-31 15:41:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-31 15:41:34 +0300 |
commit | 62879acf891f1939e16fa32d2426b56f08f1609b (patch) | |
tree | 4ac1e15f9b386478af79be32a3a3b7f7093a8585 /src/resources/beinginfo.h | |
parent | 94342625a7e97c1f4adda6f0788c85c8d112b3a5 (diff) | |
download | mv-62879acf891f1939e16fa32d2426b56f08f1609b.tar.gz mv-62879acf891f1939e16fa32d2426b56f08f1609b.tar.bz2 mv-62879acf891f1939e16fa32d2426b56f08f1609b.tar.xz mv-62879acf891f1939e16fa32d2426b56f08f1609b.zip |
add pet direction type if owner dead.
New pet db attribute: deadDirectionType
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 f59dbe4d1..894920c10 100644 --- a/src/resources/beinginfo.h +++ b/src/resources/beinginfo.h @@ -302,6 +302,12 @@ class BeingInfo final int getSitDirectionType() const A_WARN_UNUSED { return mSitDirectionType; } + void setDeadDirectionType(const int n) + { mDeadDirectionType = n; } + + int getDeadDirectionType() const A_WARN_UNUSED + { return mDeadDirectionType; } + void setColorsList(const std::string &name); std::string getColor(const int idx) const A_WARN_UNUSED; @@ -345,6 +351,7 @@ class BeingInfo final int mThinkTime; int mDirectionType; int mSitDirectionType; + int mDeadDirectionType; bool mStaticMaxHP; bool mTargetSelection; }; |