diff options
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; + } } |