diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-10 19:17:19 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-10 19:17:19 -0500 |
commit | b19265bfa91e55c564b75aadcabd212ac89cf349 (patch) | |
tree | fab3a34fc96d52fc634ca0d507fdbaf5d3546b8e /include/window.hpp | |
parent | 1f762f82f929cfd21222739a627a32e6199c34a9 (diff) |
the revival, entityx
Diffstat (limited to 'include/window.hpp')
-rw-r--r-- | include/window.hpp | 20 |
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_ |