//Using SDL and standard IO #include #include //#include "window.h" #include "loopManager.h" #include "timer.h" //Screen dimension constants //Starts up SDL and creates window int main( int argc, char* args[] ) { LoopManager gameLoop; gameLoop.setup(); gameLoop.loop(); return 0; }