summaryrefslogtreecommitdiff
path: root/src/event.h
blob: 9ba7eea13015cba70c3cc29a951a96f19a809c7f (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.h"

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

	private:
		bool run;
		SDL_Event v;
};

#endif