From f2411141e364766b1294f1b3d9e1a307b9de0c24 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sun, 1 Sep 2019 01:25:14 -0400 Subject: Game loop now updates position every tick, and added circular movement to dog --- src/components/Position.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components/Position.hpp') 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, entityx::Component { 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) -- cgit v1.2.3