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/engine.hpp | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'src/engine.hpp') diff --git a/src/engine.hpp b/src/engine.hpp index fb14093..26b1c45 100644 --- a/src/engine.hpp +++ b/src/engine.hpp @@ -32,33 +32,33 @@ class Engine { private: - entityx::EventManager events; - entityx::EntityManager entities; - entityx::SystemManager systems; + entityx::EventManager events; + entityx::EntityManager entities; + entityx::SystemManager systems; - std::thread logicThread; + std::thread logicThread; - void logicLoop(void); - void renderLoop(void); + void logicLoop(void); + void renderLoop(void); - bool shouldRun(void); + bool shouldRun(void); public: - Engine(void) : - entities(events), - systems(entities, events) {} + Engine(void) : + entities(events), + systems(entities, events) {} - /** - * Initializes the game engine. - * @return Zero on success, non-zero otherwise - */ - int init(void); + /** + * Initializes the game engine. + * @return Zero on success, non-zero otherwise + */ + int init(void); - /** - * Runs the game engine. - * Function returns when game is told to end/exit. - */ - void run(void); + /** + * Runs the game engine. + * Function returns when game is told to end/exit. + */ + void run(void); }; #endif // ENGINE_HPP_ -- cgit v1.2.3