aboutsummaryrefslogtreecommitdiffstats
path: root/include/window.hpp
blob: 55cbe1c8b23c33b425402c004adeb0d9493ba053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef WINDOW_HPP_
#define WINDOW_HPP_

#include <entityx/entityx.h>

#include <SDL2/SDL.h>

#include <events.hpp>

class WindowSystem : public entityx::System<WindowSystem>, public entityx::Receiver<WindowSystem>  {
private:
    SDL_Window *window;
    SDL_GLContext glContext;

public:
	WindowSystem(void);

	void die(void);

	void configure(entityx::EventManager &ev);
    void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
	void receive(const WindowResizeEvent&);	
	void receive(const ScreenshotEvent&);
};

#endif // WINDOW_HPP_