summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 1dec02c827aa6059f4afdfabd3d68dda16a6b7b4 (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
27
28
29
30
#include "main.hpp"

int main()
{
	Window main;
	List L(main);
	Event e;

	while(e.gRun())
	{
		while(e.Poll())
		{
			if(e.gEventType() == SDL_QUIT)
				e.off();
			//else if(e.gEventType() == SDL_KEYDOWN)
			//	eventHandle(e.gEvent());
		}

		main.Clear();

		L.Place();
		L.Behavior();

		main.Render();
		SDL_Delay(5);
	}

	main.Destroy();
	return 0;
}