summaryrefslogtreecommitdiff
path: root/inc/event.hpp
blob: e9025f0d19796d80531a2780027ef4bf1652aa0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef event_h
#define event_h

#include "window.hpp"

class Event
{
	public:
		Event();
		int Poll();
		void off();
		bool gRun();
		SDL_Event& gEvent();
		int gEventType();

	private:
		bool run;
		SDL_Event v;
};

#endif