aboutsummaryrefslogtreecommitdiff
path: root/mwe/gameloop/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mwe/gameloop/src/main.cpp')
-rw-r--r--mwe/gameloop/src/main.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/mwe/gameloop/src/main.cpp b/mwe/gameloop/src/main.cpp
new file mode 100644
index 0000000..889a30a
--- /dev/null
+++ b/mwe/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"
+#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;
+}