summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 165c0674996c2d490d081c94dcdb204080b056af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//----- STD include -----
#include <iostream>
#include <string>
#include <time.h>
#include <tuple>
//----------------------

//----- Personnal include -----
#include "./Controllers/SFMLController/SFMLController.hpp"
#include "./Controllers/ConsoleController/ConsoleController.hpp"
//-----------------------------





//----- Start -----
int main()
{
    	//Init random
	srand(time(NULL));

	//Init controller
	SFMLController controller;

	//ConsoleController controller;

	//Run the game
	controller.run();

	//End the application
	return 0;
}