diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-01 01:25:14 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-01 01:25:14 -0400 |
commit | f2411141e364766b1294f1b3d9e1a307b9de0c24 (patch) | |
tree | 3fb80cf5a4357f0b060035ef8c8e4f6fa191bb2f /src/components/Position.hpp | |
parent | efec4f7b42b12d4765da5a886fcf2c5279c8caaf (diff) |
Game loop now updates position every tick, and added circular movement to dog
Diffstat (limited to 'src/components/Position.hpp')
-rw-r--r-- | src/components/Position.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Position.hpp b/src/components/Position.hpp index 0462d1a..8a6bd74 100644 --- a/src/components/Position.hpp +++ b/src/components/Position.hpp @@ -24,8 +24,8 @@ struct Position : Component<Position>, entityx::Component<Position> { public: - float x, y; - Position(float _x, float _y): x(_x), y(_y) {} + double x, y; + Position(double _x, double _y): x(_x), y(_y) {} Position(void): x(0), y(0) {} Position FromLua(sol::object ref) |