#include "cell.h" #include void cell::setColor(color nouvelle){ couleur = nouvelle; } color cell::getColor(){ return couleur; } void cell::setVivante(bool a) { statut = a; } int cell::getX () { return x; } int cell::getY () { return y; } bool cell::getVivante() { return statut; } void cell::printcell () { std::cout << "La cellule ( à l'adresse mémoire " << this << " ) = {" << (statut ? "vivante" : "morte")<<", " << x << "x"<