diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-11 19:02:04 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-11 19:02:04 -0500 |
commit | 8a71861846c41c5f432570262b398c7627743c91 (patch) | |
tree | 8246864aa8a713d8905e93d656a55779d600aeb7 /include/engine.hpp | |
parent | b19265bfa91e55c564b75aadcabd212ac89cf349 (diff) |
more entityx, main.cpp cleanup
Diffstat (limited to 'include/engine.hpp')
-rw-r--r-- | include/engine.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/engine.hpp b/include/engine.hpp new file mode 100644 index 0000000..0fabdb3 --- /dev/null +++ b/include/engine.hpp @@ -0,0 +1,17 @@ +#ifndef ENGINE_HPP_ +#define ENGINE_HPP_ + +#include <entityx/entityx.h> + +#include <events.hpp> + +namespace game { + extern entityx::EventManager events; + extern entityx::EntityManager entities; + + inline void endGame(void) { + events.emit<GameEndEvent>(); + } +} + +#endif // ENGINE_HPP_ |