diff options
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 3429515e0..ad5f35a85 100644 --- a/src/resources/beinginfo.h +++ b/src/resources/beinginfo.h @@ -311,6 +311,12 @@ class BeingInfo final int getAttackDirectionType() const A_WARN_UNUSED { return mAttackDirectionType; } + void setAllowDelete(const bool b) + { mAllowDelete = b; } + + int getAllowDelete() const A_WARN_UNUSED + { return mAllowDelete; } + void setColorsList(const std::string &name); std::string getColor(const ItemColor idx) const A_WARN_UNUSED; @@ -365,6 +371,7 @@ class BeingInfo final int mAttackDirectionType; bool mStaticMaxHP; bool mTargetSelection; + bool mAllowDelete; }; typedef std::map<BeingTypeId, BeingInfo*> BeingInfos; |