From 871a882833364cf3a2b1de13fc25f610ef5d7da5 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 31 Aug 2019 01:22:14 -0400 Subject: Added velocity component, and force add component dependencies when they don't exist --- 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 0d69393..0462d1a 100644 --- a/src/components/Position.hpp +++ b/src/components/Position.hpp @@ -24,7 +24,7 @@ struct Position : Component, entityx::Component { public: - float x,y; + float x, y; Position(float _x, float _y): x(_x), y(_y) {} Position(void): x(0), y(0) {} -- cgit v1.2.3