diff options
author | Charlie Stanton <charlie@shtanton.xyz> | 2025-04-05 22:16:26 +0100 |
---|---|---|
committer | Charlie Stanton <charlie@shtanton.xyz> | 2025-04-05 22:16:26 +0100 |
commit | 8701a3d42c86aada738bfb3b5f817e6e1ce12a47 (patch) | |
tree | 79b9b7d239ff7b431fd6a50119061a9394bd2d15 /src/tick.c | |
parent | 7bb8b8c7670728b0dcd510d8a8205bb3776368dd (diff) | |
parent | 3fba436a0b83cce81353e3b170621a1632d8b219 (diff) | |
download | ldjam57-8701a3d42c86aada738bfb3b5f817e6e1ce12a47.tar |
Merge branch 'main' of codeberg.org:shtanton/ldjam57
Diffstat (limited to 'src/tick.c')
-rw-r--r-- | src/tick.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#ifndef INCLUDE_TICK_C +#define INCLUDE_TICK_C + #include "all.c" static int isRed(int cell) { @@ -333,3 +336,5 @@ static void tick(Game *game, Arena a) { // TODO: Win conditions } } + +#endif // INCLUDE_TICK_C |