From f8b062e3fe43ece368c99d1083a929de92b7cff2 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Wed, 9 Oct 2019 02:40:20 -0400 Subject: Started more advanced collision detetction --- src/components/Position.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/Position.hpp') diff --git a/src/components/Position.hpp b/src/components/Position.hpp index bfa4b41..1c649b4 100644 --- a/src/components/Position.hpp +++ b/src/components/Position.hpp @@ -26,7 +26,7 @@ struct Position : Component public: float x, y, z; - Position(float _x = 0, float _y = 0, float _z = 0) : + Position(float _x = 0.0f, float _y = 0.0f, float _z = 0.0f) : x(_x), y(_y), z(_z) {} Position FromLua(sol::object ref) -- cgit v1.2.3