aboutsummaryrefslogtreecommitdiffstats
path: root/include/window.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/window.hpp')
-rw-r--r--include/window.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/window.hpp b/include/window.hpp
new file mode 100644
index 0000000..b642835
--- /dev/null
+++ b/include/window.hpp
@@ -0,0 +1,20 @@
+#ifndef WINDOW_HPP_
+#define WINDOW_HPP_
+
+#include <entityx/entityx.h>
+
+#include <SDL2/SDL.h>
+
+class WindowSystem : public entityx::System<WindowSystem> {
+private:
+ SDL_Window *window;
+ SDL_GLContext glContext;
+
+public:
+ WindowSystem(void);
+ ~WindowSystem(void);
+
+ void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
+};
+
+#endif // WINDOW_HPP_