From b1f93a4f8a5a3e84db9f00d0b41749d4fb32ed26 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 30 Jul 2017 11:02:39 -0400 Subject: event feature work; ozone bgm redone --- src/systems/dialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/systems/dialog.cpp') diff --git a/src/systems/dialog.cpp b/src/systems/dialog.cpp index 87327ca..dd07ab8 100644 --- a/src/systems/dialog.cpp +++ b/src/systems/dialog.cpp @@ -25,7 +25,7 @@ void DialogSystem::configure(entityx::EventManager &ev) ev.subscribe(*this); } -void DialogSystem::receive(const MouseClickEvent &mce) +bool DialogSystem::receive(const MouseClickEvent &mce) { game::entities.each( [&](entityx::Entity e, Position &pos, Solid &dim, Dialog &d, Name &name) { @@ -144,6 +144,7 @@ void DialogSystem::receive(const MouseClickEvent &mce) } } }); + return true; } void DialogSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) -- cgit v1.2.3