2015-04-30 09:07:40 +02:00
|
|
|
|
|
|
|
//----- STD include -----
|
2015-04-29 15:42:41 +04:00
|
|
|
#include <iostream>
|
2015-04-28 19:15:36 +02:00
|
|
|
#include <string>
|
2015-04-30 08:48:29 +04:00
|
|
|
#include <time.h>
|
2015-04-30 09:07:40 +02:00
|
|
|
//----------------------
|
2015-04-28 19:15:36 +02:00
|
|
|
|
2015-04-30 09:07:40 +02:00
|
|
|
//----- Personnal include -----
|
2015-04-29 21:18:06 +02:00
|
|
|
#include "./Model/Grid.hpp"
|
2015-05-01 13:18:26 +02:00
|
|
|
#include "./Controllers/ConsoleController/ConsoleController.hpp"
|
2015-04-30 09:07:40 +02:00
|
|
|
//-----------------------------
|
|
|
|
|
|
|
|
|
|
|
|
//----- Start -----
|
2015-04-29 15:42:41 +04:00
|
|
|
|
2015-04-28 19:15:36 +02:00
|
|
|
int main()
|
|
|
|
{
|
2015-04-30 09:07:40 +02:00
|
|
|
//Init random
|
|
|
|
srand(time(NULL));
|
|
|
|
|
|
|
|
//Init console controller
|
|
|
|
ConsoleController * controller = new ConsoleController();
|
|
|
|
|
2015-04-30 10:09:58 +02:00
|
|
|
//Launch game
|
2015-04-30 09:07:40 +02:00
|
|
|
controller->play();
|
|
|
|
|
2015-04-30 10:09:58 +02:00
|
|
|
//Remove controlelr
|
2015-04-30 09:07:40 +02:00
|
|
|
delete controller;
|
|
|
|
|
|
|
|
return 0;
|
2015-04-28 19:15:36 +02:00
|
|
|
}
|