summaryrefslogtreecommitdiff
path: root/src/resources/beinginfo.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-18 21:08:07 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-18 21:08:07 +0300
commit686815641bedccdf57a66b916a0aad52f0dddfe5 (patch)
tree1e8892695cca8a01329bf0eab0c98159e2f74534 /src/resources/beinginfo.h
parent0a29d8b9786d965a5ab14911d3e004bbd58de0b7 (diff)
downloadplus-686815641bedccdf57a66b916a0aad52f0dddfe5.tar.gz
plus-686815641bedccdf57a66b916a0aad52f0dddfe5.tar.bz2
plus-686815641bedccdf57a66b916a0aad52f0dddfe5.tar.xz
plus-686815641bedccdf57a66b916a0aad52f0dddfe5.zip
Add into being dbs, shared attribute "quickActionEffect".
For now unused.
Diffstat (limited to 'src/resources/beinginfo.h')
-rw-r--r--src/resources/beinginfo.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/resources/beinginfo.h b/src/resources/beinginfo.h
index e98d48a41..c1a9ccd7b 100644
--- a/src/resources/beinginfo.h
+++ b/src/resources/beinginfo.h
@@ -319,6 +319,12 @@ class BeingInfo final
int getAllowDelete() const A_WARN_UNUSED
{ return mAllowDelete; }
+ void setQuickActionEffectId(const int n)
+ { mQuickActionEffectId = n; }
+
+ int getQuickActionEffectId() const A_WARN_UNUSED
+ { return mQuickActionEffectId; }
+
void setColorsList(const std::string &name);
std::string getColor(const ItemColor idx) const A_WARN_UNUSED;
@@ -378,6 +384,7 @@ class BeingInfo final
int mSitDirectionType;
int mDeadDirectionType;
int mAttackDirectionType;
+ int mQuickActionEffectId;
bool mStaticMaxHP;
bool mTargetSelection;
bool mAllowDelete;