diff options
Diffstat (limited to 'gameloop/src/main.cpp')
-rw-r--r-- | gameloop/src/main.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gameloop/src/main.cpp b/gameloop/src/main.cpp new file mode 100644 index 0000000..76d0c84 --- /dev/null +++ b/gameloop/src/main.cpp @@ -0,0 +1,17 @@ +//Using SDL and standard IO +#include <SDL2/SDL.h> +#include <stdio.h> +//#include "window.h" +#include "loopManager.h" +//Screen dimension constants + + +//Starts up SDL and creates window + +int main( int argc, char* args[] ) +{ + LoopManager gameLoop; + gameLoop.setup(); + gameLoop.loop(); + return 0; +} |