diff options
Diffstat (limited to 'src/components/Player.hpp')
-rw-r--r-- | src/components/Player.hpp | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/components/Player.hpp b/src/components/Player.hpp index 6fb6311..5c1e870 100644 --- a/src/components/Player.hpp +++ b/src/components/Player.hpp @@ -18,17 +18,19 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef PLAYER_HPP_ -#define PLAYER_HPP_ +#ifndef COMPONENT_PLAYER_HPP_ +#define COMPONENT_PLAYER_HPP_ #include "Component.hpp" struct Player : Component<Player>, entityx::Component<Player> { - Player FromLua([[maybe_unused]] sol::object ref) - { - return *this; - } +public: + Player FromLua([[maybe_unused]] sol::object ref) + { + return *this; + } }; -#endif // PLAYER_HPP_ +#endif // COMPONENT_PLAYER_HPP_ + |