We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
generation
1 parent a53bfc7 commit eda7ac0Copy full SHA for eda7ac0
libs/utilities.h
@@ -18,6 +18,7 @@ typedef struct {
18
int cols; /** Number of columns in `dashboard`. */
19
int cellsAlive; /** Number of alive cells. */
20
int cellsDead; /** Number of dead cells. */
21
+ int generation; /** Represents the generation number. */
22
} TGame;
23
24
// TODO
src/main.c
@@ -19,6 +19,7 @@ int main() {
game.cols = cols;
game.cellsAlive = cellAlive;
game.cellsDead = cellDead;
+ game.generation = 0;
fillDashboard(&game, 0);
25
0 commit comments