diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-06-13 19:56:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-06-13 19:56:05 +0300 |
commit | 38873bb99dea8a8089f1056bc1b28a59ed1f83d3 (patch) | |
tree | 702b19cf37f846f8a777777b958122d2cb562359 /src/being/being.h | |
parent | c4d8fa788e0f89d73ba5ae2b66b79ad0351c5fbf (diff) | |
download | plus-38873bb99dea8a8089f1056bc1b28a59ed1f83d3.tar.gz plus-38873bb99dea8a8089f1056bc1b28a59ed1f83d3.tar.bz2 plus-38873bb99dea8a8089f1056bc1b28a59ed1f83d3.tar.xz plus-38873bb99dea8a8089f1056bc1b28a59ed1f83d3.zip |
Move virtual methods from Being constructor to postInit.
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/being/being.h b/src/being/being.h index 52ea8b9ec..3d21311b7 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -102,9 +102,7 @@ class Being notfinal : public ActorSprite, * @param map the map the being is on */ Being(const BeingId id, - const ActorTypeT type, - const BeingTypeId subtype, - Map *const map); + const ActorTypeT type); A_DELETE_COPY(Being) @@ -1084,6 +1082,11 @@ class Being notfinal : public ActorSprite, void fixDirectionOffsets(int &offsetX, int &offsetY) const; + static Being *createBeing(const BeingId id, + const ActorTypeT type, + const BeingTypeId subtype, + Map *const map); + protected: void drawPlayerSpriteAt(Graphics *restrict const graphics, const int x, @@ -1206,6 +1209,9 @@ class Being notfinal : public ActorSprite, bool mIsGM; protected: + void postInit(const BeingTypeId subType, + Map *const map); + /** * Calculates the offset in the given directions. * If walking in direction 'neg' the value is negated. |