summaryrefslogtreecommitdiff
path: root/inc/event.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/event.hpp')
-rw-r--r--inc/event.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/inc/event.hpp b/inc/event.hpp
deleted file mode 100644
index 3a0a868..0000000
--- a/inc/event.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef event_h
-#define event_h
-
-#include <SDL2/SDL.h>
-
-class Event
-{
- public:
- Event();
-
- int Poll();
- void off();
- bool gRun();
- SDL_Event& gEvent();
- int gEventType();
-
- private:
- bool run;
- SDL_Event v;
-};
-
-#endif