diff options
Diffstat (limited to 'mwe/gameloop/src/main.cpp')
-rw-r--r-- | mwe/gameloop/src/main.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mwe/gameloop/src/main.cpp b/mwe/gameloop/src/main.cpp new file mode 100644 index 0000000..2333e63 --- /dev/null +++ b/mwe/gameloop/src/main.cpp @@ -0,0 +1,19 @@ +//Using SDL and standard IO +#include <SDL2/SDL.h> +#include <stdio.h> +//#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; +} |