aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Position.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-30 00:14:27 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-30 00:14:27 -0400
commit2662ac356ce14dacfbc91689fd37244facff4989 (patch)
tree8943534ef3c74290a6a79885abbfcfc5eacba785 /src/components/Position.hpp
parent70c4239993cbd7fe5604de8f39a3783e9c7a7471 (diff)
Added Name and Render components to Lua
Diffstat (limited to 'src/components/Position.hpp')
-rw-r--r--src/components/Position.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Position.hpp b/src/components/Position.hpp
index 8684a7f..1c6cf71 100644
--- a/src/components/Position.hpp
+++ b/src/components/Position.hpp
@@ -1,4 +1,5 @@
/**
+
* Copyright (C) 2019 Belle-Isle, Andrew <drumsetmonkey@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
@@ -26,11 +27,11 @@ struct Position : Component<Position>, entityx::Component<Position>
public:
float x,y;
Position(float _x, float _y): x(_x), y(_y) {}
- Position(void){x = y = 0.0;}
+ Position(void): x(0), y(0) {}
Position FromLua(sol::object ref)
{
- if (ref.get_type() == sol::type::table){
+ if (ref.get_type() == sol::type::table) {
sol::table tab = ref;
if (tab["x"] != nullptr)
this->x = tab["x"];