diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-15 03:18:26 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-15 03:18:26 -0400 |
commit | bce8d0687f44def4b0171cd84bf1441fc4390e58 (patch) | |
tree | 0449aacaa3b6847aa65cbed6cf9b3ae417e76bed /src/world.cpp | |
parent | b19978a1100bf86086901e1410f2e7ad1358278b (diff) |
Added event subsection of code
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp index 3fb5b6b..9e45d60 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -18,6 +18,7 @@ */ #include "world.hpp" +#include "events/world.hpp" /***************** * WORLD CLASS * @@ -193,5 +194,9 @@ void WorldSystem::update([[maybe_unused]]entityx::EntityManager& entities, [[maybe_unused]]entityx::EventManager& events, [[maybe_unused]]entityx::TimeDelta dt) { - + if (currentWorld == nullptr) { + currentWorld = &(worlds.front()); + events.emit<WorldChangeEvent>(currentWorld); + std::cout << "Emitted" << std::endl; + } } |