1 //============================================================================
2 // Name : sdl-test7.cpp
6 // Description : Hello World in C++, Ansi-style
7 //============================================================================
9 #include "app/Application.h"
10 #include "pong/Match.h"
11 #include "sdl/InitScreen.h"
12 #include "sdl/InitSDL.h"
13 #include "sdl/InitTTF.h"
15 int main(int argc, char *argv[]) {
17 const int height(480);
21 sdl::InitScreen initScreen(width, height);
23 app::Application a(&initScreen, new pong::Match);