aboutsummaryrefslogtreecommitdiff
path: root/mwe/gameloop/src/main.cpp
blob: 889a30a92d91cd7ae26823cbd2e9e8f447d30f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}