aboutsummaryrefslogtreecommitdiff
path: root/src/example/events.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/example/events.cpp')
-rw-r--r--src/example/events.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/example/events.cpp b/src/example/events.cpp
index ed519ff..5a0a748 100644
--- a/src/example/events.cpp
+++ b/src/example/events.cpp
@@ -89,11 +89,13 @@ int main() {
// Trigger the events while `testListener` is in scope
EventManager::get_instance().trigger_event<KeyPressEvent>(key_press, 1);
- EventManager::get_instance().trigger_event(MouseClickEvent{
- .mouse_x = 100,
- .mouse_y = 100,
- .button = MouseButton::LEFT_MOUSE,
- },1);
+ EventManager::get_instance().trigger_event(
+ MouseClickEvent{
+ .mouse_x = 100,
+ .mouse_y = 100,
+ .button = MouseButton::LEFT_MOUSE,
+ },
+ 1);
}
// custom lambda event handler
EventHandler<KeyPressEvent> event_handler = [](const KeyPressEvent & e) {