Skip to content

Commit eda7ac0

Browse files
committed
feature(TGame): add generation field
1 parent a53bfc7 commit eda7ac0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libs/utilities.h

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ typedef struct {
1818
int cols; /** Number of columns in `dashboard`. */
1919
int cellsAlive; /** Number of alive cells. */
2020
int cellsDead; /** Number of dead cells. */
21+
int generation; /** Represents the generation number. */
2122
} TGame;
2223

2324
// TODO

src/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ int main() {
1919
game.cols = cols;
2020
game.cellsAlive = cellAlive;
2121
game.cellsDead = cellDead;
22+
game.generation = 0;
2223

2324
fillDashboard(&game, 0);
2425

0 commit comments

Comments
 (0)