2P11/src/main.cpp

30 lines
484 B
C++
Raw Normal View History

2015-04-30 09:07:40 +02:00
//----- STD include -----
2015-04-29 15:42:41 +04:00
#include <iostream>
#include <string>
2015-04-30 08:48:29 +04:00
#include <time.h>
2015-04-30 09:07:40 +02:00
//----------------------
2015-04-30 09:07:40 +02:00
//----- Personnal include -----
#include "./Model/Grid.hpp"
2015-04-30 09:07:40 +02:00
#include "./Controller/ConsoleController/ConsoleController.hpp"
//-----------------------------
//----- Start -----
2015-04-29 15:42:41 +04:00
int main()
{
2015-04-30 09:07:40 +02:00
//Init random
srand(time(NULL));
//Init console controller
ConsoleController * controller = new ConsoleController();
controller->play();
delete controller;
return 0;
}