diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-01 14:45:42 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-01 14:45:42 -0400 |
commit | 3004bca85c245c2ec77c4c1bd9343c96191c7ccf (patch) | |
tree | 2c007f9f270a658b13f6c3cefe358415b3d16025 /src/engine.hpp | |
parent | e7fee98e0ee15665b40b383baf925356bb81f20d (diff) |
made all formatting match
Diffstat (limited to 'src/engine.hpp')
-rw-r--r-- | src/engine.hpp | 40 |
1 files changed, 20 insertions, 20 deletions
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_ |