]> git.localhorst.tv Git - space.git/blob - src/space.cpp
some cleanup
[space.git] / src / space.cpp
1 #include "app/Application.h"
2 #include "sdl/InitSDL.h"
3 #include "sdl/InitScreen.h"
4
5 using namespace space;
6
7
8 int main(int argc, const char *argv[]) {
9         InitSDL sdl;
10         InitScreen screen(800, 600);
11
12         Application app(screen);
13         app.Run();
14
15         return 0;
16 }