diff options
author | 2025-05-21 17:00:19 +0200 | |
---|---|---|
committer | 2025-05-21 17:13:23 +0200 | |
commit | 0e8e745f88617fe5933eb7981198ac24cb7b1ee4 (patch) | |
tree | 834d6414217ee9c4d073eb68cbe26ba9bb42c6b2 /src/main/game/game.c | |
parent | 25c0bda9ca1e436370a9e2a671d3195de0e90902 (diff) | |
download | tris-0e8e745f88617fe5933eb7981198ac24cb7b1ee4.tar.gz tris-0e8e745f88617fe5933eb7981198ac24cb7b1ee4.zip |
Add the Cell struct
Diffstat (limited to 'src/main/game/game.c')
-rw-r--r-- | src/main/game/game.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/game/game.c b/src/main/game/game.c index 40547cc..5ec3652 100644 --- a/src/main/game/game.c +++ b/src/main/game/game.c @@ -21,6 +21,7 @@ #include <stdlib.h> #include "../engine/engine.h" #include "game.h" +#include "cell.h" #include "../util.h" #include "../engine/ui/ui.h" |