diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-09-26 00:58:27 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-09-26 00:58:27 +0200 |
commit | c3e32345e53650a1c231f4e1a41d40c97955b893 (patch) | |
tree | 93b22aedbe355173510a04eafec9f14d7c4c3e0f /src/model/Entity.hpp | |
parent | 8b4ca336ce68cc17573115dd07eb1bfc6521b298 (diff) | |
download | rpgedit-c3e32345e53650a1c231f4e1a41d40c97955b893.tar rpgedit-c3e32345e53650a1c231f4e1a41d40c97955b893.zip |
Collision rework
Diffstat (limited to 'src/model/Entity.hpp')
-rw-r--r-- | src/model/Entity.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/Entity.hpp b/src/model/Entity.hpp index eab6983..331cb4f 100644 --- a/src/model/Entity.hpp +++ b/src/model/Entity.hpp @@ -47,7 +47,7 @@ private: public: Entity(const std::string &name0) - : name(name0), direction(NORTH) { + : name(name0), direction(Direction::NORTH) { } const std::string & getName() const { |