aboutsummaryrefslogtreecommitdiffstats
path: root/include/events.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-10-10 19:17:19 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-10-10 19:17:19 -0500
commitb19265bfa91e55c564b75aadcabd212ac89cf349 (patch)
treefab3a34fc96d52fc634ca0d507fdbaf5d3546b8e /include/events.hpp
parent1f762f82f929cfd21222739a627a32e6199c34a9 (diff)
the revival, entityx
Diffstat (limited to 'include/events.hpp')
-rw-r--r--include/events.hpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/include/events.hpp b/include/events.hpp
new file mode 100644
index 0000000..aa3ca07
--- /dev/null
+++ b/include/events.hpp
@@ -0,0 +1,31 @@
+#ifndef EVENTS_HPP_
+#define EVENTS_HPP_
+
+/**
+ * A place for events to live, while gamedev slowly dies from rewriting.
+ */
+
+#include <SDL2/SDL.h>
+
+ struct MouseScrollEvent {
+ MouseScrollEvent(int sd)
+ : scrollDistance(sd) {}
+
+ int scrollDistance;
+ };
+
+struct KeyDownEvent {
+ KeyDownEvent(SDL_Keycode kc)
+ : keycode(kc) {}
+
+ SDL_Keycode keycode;
+};
+
+struct KeyUpEvent {
+ KeyUpEvent(SDL_Keycode kc)
+ : keycode(kc) {}
+
+ SDL_Keycode keycode;
+};
+
+#endif // EVENTS_HPP_