2P11/src/main.cpp

47 lines
785 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"
#include "./Controllers/ConsoleController/ConsoleController.hpp"
2015-04-30 09:07:40 +02:00
//-----------------------------
2015-05-01 18:19:32 +02:00
#include "./Model/Cell.hpp"
//#include "./Model/Elements/StringElement.hpp"
2015-04-30 09:07:40 +02:00
//----- Start -----
2015-04-29 15:42:41 +04:00
2015-05-01 18:19:32 +02:00
int main()
{
2015-05-01 18:19:32 +02:00
Cell<StringElement> cell1("loic");
Cell<StringElement> cell2("loic");
if(cell1==cell2){
std::cout << "Egale" << std::endl;
}
else{
std::cout << "Différent" << std::endl;
}
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;
}