diff options
Diffstat (limited to 'include/game.h')
-rw-r--r-- | include/game.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/game.h b/include/game.h new file mode 100644 index 0000000..61239e7 --- /dev/null +++ b/include/game.h @@ -0,0 +1,11 @@ +#ifndef _GAME +#define _GAME + +#include "types.h" + +/* + * Implements the main game loop. Returns the final state of the board. + */ +Board game_loop(Board); + +#endif |