aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Position.hpp4
-rw-r--r--src/components/Render.hpp6
-rw-r--r--src/components/Velocity.hpp4
3 files changed, 7 insertions, 7 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)
diff --git a/src/components/Render.hpp b/src/components/Render.hpp
index 4444fef..5a9b1a4 100644
--- a/src/components/Render.hpp
+++ b/src/components/Render.hpp
@@ -15,8 +15,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef RENDER_HPP_
-#define RENDER_HPP_
+#ifndef RENDERC_HPP_
+#define RENDERC_HPP_
#include <components/Component.hpp>
@@ -49,4 +49,4 @@ struct Render : Component<Render>, entityx::Component<Render>
};
-#endif//RENDER_HPP_
+#endif//RENDERC_HPP_
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)
{