summaryrefslogtreecommitdiff
path: root/src/resources/beinginfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/beinginfo.h')
-rw-r--r--src/resources/beinginfo.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/resources/beinginfo.h b/src/resources/beinginfo.h
index 008af8590..a752898f8 100644
--- a/src/resources/beinginfo.h
+++ b/src/resources/beinginfo.h
@@ -224,6 +224,18 @@ class BeingInfo final
void setHeight(const int n)
{ mHeight = n; }
+ void setStartFollowDist(const int n)
+ { mStartFollowDist = n; }
+
+ int getStartFollowDist()
+ { return mStartFollowDist; }
+
+ void setFollowDist(const int n)
+ { mFollowDist = n; }
+
+ int getFollowDist()
+ { return mFollowDist; }
+
void setColorsList(const std::string &name);
std::string getColor(const int idx) const;
@@ -254,6 +266,8 @@ class BeingInfo final
uint16_t mAvatarId;
int mWidth;
int mHeight;
+ int mStartFollowDist;
+ int mFollowDist;
bool mStaticMaxHP;
bool mTargetSelection;
};