Incendie
cellulevide.h
1 #ifndef CELLULEVIDE_H
2 #define CELLULEVIDE_H
3 
4 #include "../debug.h"
5 #include "cellule.h"
6 
7 class CelluleVide : public Cellule
8 {
9 public:
10  int getState() const { return 0; }
11 };
12 
13 #endif // CELLULEVIDE_H
Definition: cellulevide.h:7
Definition: cellule.h:4