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/player.hpp | 77 +++++++++++++++++++++++++++++----------------------------- 1 file changed, 39 insertions(+), 38 deletions(-) (limited to 'src/player.hpp') diff --git a/src/player.hpp b/src/player.hpp index 4469745..b1821c5 100644 --- a/src/player.hpp +++ b/src/player.hpp @@ -18,8 +18,8 @@ * along with this program. If not, see . */ -#ifndef PLAYERSYSTEM_HPP_ -#define PLAYERSYSTEM_HPP_ +#ifndef SYSTEM_PLAYER_HPP_ +#define SYSTEM_PLAYER_HPP_ #include #include @@ -32,49 +32,50 @@ * Controls player entity movement. */ class PlayerSystem : public entityx::System, - public entityx::Receiver + public entityx::Receiver { - private: - /** - * Defines player's horizontal movement velocity. - */ - constexpr static double GROUND_VELOCITY = 100; +private: + /** + * Defines player's horizontal movement velocity. + */ + constexpr static double GROUND_VELOCITY = 100; - entityx::Entity player; + entityx::Entity player; - public: - /** - * Prepares the system for running. - */ - void configure([[maybe_unused]] entityx::EntityManager& entities, - entityx::EventManager& events) final; +public: + /** + * Prepares the system for running. + */ + void configure(entityx::EntityManager& entities, + entityx::EventManager& events) final; - /** - * Updates the scripting system. - */ - void update([[maybe_unused]] entityx::EntityManager& entites, - [[maybe_unused]] entityx::EventManager& events, - [[maybe_unused]] entityx::TimeDelta dt) final; + /** + * Updates the scripting system. + */ + void update(entityx::EntityManager& entites, + entityx::EventManager& events, + entityx::TimeDelta dt) final; - /** - * Captures the player entity. - */ - void receive(const entityx::ComponentAddedEvent& cae); + /** + * Captures the player entity. + */ + void receive(const entityx::ComponentAddedEvent& cae); - /** - * Invalidates the system's player entity (assume player is gone). - */ - void receive(const entityx::ComponentRemovedEvent& cre); + /** + * Invalidates the system's player entity (assume player is gone). + */ + void receive(const entityx::ComponentRemovedEvent& cre); - /** - * Applies velocity based on key press. - */ - void receive(const KeyDownEvent& kue); + /** + * Applies velocity based on key press. + */ + void receive(const KeyDownEvent& kue); - /** - * Removes applied velocity - */ - void receive(const KeyUpEvent& kue); + /** + * Removes applied velocity + */ + void receive(const KeyUpEvent& kue); }; -#endif // PLAYERSYSTEM_HPP_ +#endif // SYSTEM_PLAYER_HPP_ + -- cgit v1.2.3