From 3004bca85c245c2ec77c4c1bd9343c96191c7ccf Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 1 Sep 2019 14:45:42 -0400 Subject: made all formatting match --- src/components/Position.hpp | 44 +++++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 21 deletions(-) (limited to 'src/components/Position.hpp') 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 . */ -#ifndef POSITION_HPP_ -#define POSITION_HPP_ +#ifndef COMPONENT_POSITION_HPP_ +#define COMPONENT_POSITION_HPP_ -#include "components/Component.hpp" +#include "Component.hpp" struct Position : Component, entityx::Component { - 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_ + -- cgit v1.2.3