aboutsummaryrefslogtreecommitdiff
path: root/mwe/events
diff options
context:
space:
mode:
Diffstat (limited to 'mwe/events')
-rw-r--r--mwe/events/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mwe/events/src/main.cpp b/mwe/events/src/main.cpp
index 21f2dbf..6b22008 100644
--- a/mwe/events/src/main.cpp
+++ b/mwe/events/src/main.cpp
@@ -52,13 +52,13 @@ int main(int argc, char* args[]) {
triggerEvent(PlayerDamagedEvent(50, 1));
subscribe<KeyPressedEvent>(onKeyPressed,1,false);
subscribe<KeyPressedEvent>(onKeyPressed1,false);
- // std::unique_ptr<Event> anotherKeyPressEvent = std::make_unique<KeyPressedEvent>(65);
// queueEvent(std::move(anotherKeyPressEvent));
triggerEvent(KeyPressedEvent(42), 1);
EventManager::getInstance().dispatchEvents();
//collision event call
testCollisionEvent();
+
gameLoop.setup();
gameLoop.loop();
return 0;