blob: d168a5418e2c4fcda735694e48dc68e47cea89fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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);
void die(void);
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
};
#endif // WINDOW_HPP_
|