diff options
Diffstat (limited to 'src/components/Position.hpp')
-rw-r--r-- | src/components/Position.hpp | 44 |
1 files changed, 23 insertions, 21 deletions
diff --git a/src/components/Position.hpp b/src/components/Position.hpp index 8a6bd74..c801998 100644 --- a/src/components/Position.hpp +++ b/src/components/Position.hpp @@ -16,31 +16,33 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef POSITION_HPP_ -#define POSITION_HPP_ +#ifndef COMPONENT_POSITION_HPP_ +#define COMPONENT_POSITION_HPP_ -#include "components/Component.hpp" +#include "Component.hpp" struct Position : Component<Position>, entityx::Component<Position> { - public: - double x, y; - Position(double _x, double _y): x(_x), y(_y) {} - Position(void): x(0), y(0) {} - - Position FromLua(sol::object ref) - { - if (ref.get_type() == sol::type::table) { - sol::table tab = ref; - if (tab["x"] != nullptr) - this->x = tab["x"]; - if (tab["y"] != nullptr) - this->y = tab["y"]; - } else { - throw std::string("Position table not formatted properly"); - } - return *this; +public: + double x, y; + + Position(double _x = 0, double _y = 0) : + x(_x), y(_y) {} + + Position FromLua(sol::object ref) + { + if (ref.get_type() == sol::type::table) { + sol::table tab = ref; + if (tab["x"] != nullptr) + this->x = tab["x"]; + if (tab["y"] != nullptr) + this->y = tab["y"]; + } else { + throw std::string("Position table not formatted properly"); } + return *this; + } }; -#endif//POSITION_HPP_ +#endif // COMPONENT_POSITION_HPP_ + |