aboutsummaryrefslogtreecommitdiffstats
path: root/include/events.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/events.hpp')
-rw-r--r--include/events.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/events.hpp b/include/events.hpp
index 7f70c04..5cd8040 100644
--- a/include/events.hpp
+++ b/include/events.hpp
@@ -47,4 +47,12 @@ struct BGMToggleEvent {
World *world;
};
+struct WindowResizeEvent {
+ WindowResizeEvent(int w, int h)
+ : x(w), y(h) {}
+
+ int x;
+ int y;
+};
+
#endif // EVENTS_HPP_