aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Player.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-01 14:45:42 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-01 14:45:42 -0400
commit3004bca85c245c2ec77c4c1bd9343c96191c7ccf (patch)
tree2c007f9f270a658b13f6c3cefe358415b3d16025 /src/components/Player.hpp
parente7fee98e0ee15665b40b383baf925356bb81f20d (diff)
made all formatting match
Diffstat (limited to 'src/components/Player.hpp')
-rw-r--r--src/components/Player.hpp16
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_
+