2P11/src/main.cpp

47 lines
836 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-02 18:15:14 +02:00
Cell<StringElement> *cell1 = new Cell<StringElement>("");
2015-05-02 11:06:54 +02:00
Cell<StringElement> *cell2 = new Cell<StringElement>("i");
2015-05-01 18:19:32 +02:00
2015-05-02 11:06:54 +02:00
if(cell2->isEmpty()){
std::cout << "Empty" << std::endl;
2015-05-01 18:19:32 +02:00
}
else{
2015-05-02 11:06:54 +02:00
std::cout << "Not empty" << std::endl;
2015-05-01 18:19:32 +02:00
}
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;
}