aboutsummaryrefslogtreecommitdiff
path: root/mwe/events/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mwe/events/src/main.cpp')
-rw-r--r--mwe/events/src/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/mwe/events/src/main.cpp b/mwe/events/src/main.cpp
new file mode 100644
index 0000000..8d8567d
--- /dev/null
+++ b/mwe/events/src/main.cpp
@@ -0,0 +1,14 @@
+#include <SDL2/SDL.h>
+#include <stdio.h>
+#include "event.h"
+
+
+int main(int argc, char * args[]) {
+
+ KeyPressedEvent keyEvent(1,1);
+ KeyReleasedEvent keyRelease(1);
+ std::cout << keyEvent.GetEventType() << std::endl;
+ std::cout << keyRelease.GetEventType() << std::endl;
+ std::cin;
+ return 0;
+}