diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-28 14:30:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-28 14:30:31 +0300 |
commit | 462867b1d99cf63a27566449cbf8f0feda7f1ec6 (patch) | |
tree | 3d4a159827bc5af72a2c5aedc89698fee44033c2 /src/being/being.h | |
parent | bc27e1bc29ab07a8560db30355ca3aeb3cfb724f (diff) | |
download | mv-462867b1d99cf63a27566449cbf8f0feda7f1ec6.tar.gz mv-462867b1d99cf63a27566449cbf8f0feda7f1ec6.tar.bz2 mv-462867b1d99cf63a27566449cbf8f0feda7f1ec6.tar.xz mv-462867b1d99cf63a27566449cbf8f0feda7f1ec6.zip |
Revert "Remove setMap from being constructor."
This reverts commit 9cf563fa7f4059bfddd82efdaa89df2ed07a6d7c.
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/being/being.h b/src/being/being.h index 90a351af0..313a92c2d 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -155,8 +155,10 @@ class Being : public ActorSprite, public ConfigListener * * @param id a unique being id * @param subtype partly determines the type of the being + * @param map the map the being is on */ - Being(const int id, const Type type, const uint16_t subtype); + Being(const int id, const Type type, const uint16_t subtype, + Map *const map); A_DELETE_COPY(Being) |