summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 5ab78b3e2e10d9c122c11ec30ddd53c8bb2c246a (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
#include "main.h"

int main()
{
	Window main;
	Entity ship(main, "images/basic.png");
	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();
		ship.Place();
		main.Render();
	}

	main.Destroy();
	return 0;
}