aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Velocity.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 01:25:14 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 01:25:14 -0400
commitf2411141e364766b1294f1b3d9e1a307b9de0c24 (patch)
tree3fb80cf5a4357f0b060035ef8c8e4f6fa191bb2f /src/components/Velocity.hpp
parentefec4f7b42b12d4765da5a886fcf2c5279c8caaf (diff)
Game loop now updates position every tick, and added circular movement to dog
Diffstat (limited to 'src/components/Velocity.hpp')
-rw-r--r--src/components/Velocity.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Velocity.hpp b/src/components/Velocity.hpp
index eacadf2..c2b85e8 100644
--- a/src/components/Velocity.hpp
+++ b/src/components/Velocity.hpp
@@ -25,9 +25,9 @@
struct Velocity : Component<Velocity>, entityx::Component<Velocity>
{
public:
- float x, y;
+ double x, y;
Velocity(): x(0), y(0) {}
- Velocity(float _x, float _y): x(_x), y(_y) {}
+ Velocity(double _x, double _y): x(_x), y(_y) {}
Velocity FromLua(sol::object ref)
{