blob: 48c1766921c41ffc37c1a773fc3157450fd01efb (
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
|
//----- STD include -----
#include <iostream>
#include <string>
#include <time.h>
#include <tuple>
//----------------------
//----- Personnal include -----
#include "./Controllers/ConsoleController/ConsoleController.hpp"
//-----------------------------
//----- Start -----
int main()
{
//Init random
srand(time(NULL));
//Init controller
ConsoleController controller;
//Run the game
controller.run();
//End the application
return 0;
}
|