From 9e791e4e927b837c8647765ada6f25be1ac086cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Benencia?= Date: Tue, 31 Mar 2015 15:45:21 -0300 Subject: introduce game loop function --- include/game.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/game.h (limited to 'include/game.h') 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 -- cgit v1.2.3