aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine.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/engine.hpp
parente7fee98e0ee15665b40b383baf925356bb81f20d (diff)
made all formatting match
Diffstat (limited to 'src/engine.hpp')
-rw-r--r--src/engine.hpp40
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_