diff options
author | ostanton <oliver@stanton.uk.net> | 2025-04-05 19:45:55 +0100 |
---|---|---|
committer | ostanton <oliver@stanton.uk.net> | 2025-04-05 19:45:55 +0100 |
commit | 5920354ee9132b87cea62fed2d02fde789c1f8b8 (patch) | |
tree | 6f72018ef0bcb42e6915a722baf93e0d339af709 /src/tick.c | |
parent | 1c805d096248db7184b7d935f008ab5ae49a714e (diff) | |
download | ldjam57-5920354ee9132b87cea62fed2d02fde789c1f8b8.tar |
Include guards for MSVC to stop whining
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 |