From aa1d7c6e284cc0818325614391619f3ff13d3e94 Mon Sep 17 00:00:00 2001 From: Simponic Date: Sat, 4 Dec 2021 13:34:49 -0700 Subject: Initial commit --- serial/include/game.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 serial/include/game.h (limited to 'serial/include/game.h') diff --git a/serial/include/game.h b/serial/include/game.h new file mode 100644 index 0000000..1896daa --- /dev/null +++ b/serial/include/game.h @@ -0,0 +1,20 @@ +#include +#include +#include + +#ifndef GAME_H +#define GAME_H + +struct GAME { + unsigned char** grid; + int padding; + int width; + int height; +}; + +int neighbors(struct GAME* game, int x, int y); +void next(struct GAME* game); +void update(struct GAME* game, int x1, int x2, int y1, int y2); +void randomize(struct GAME* game); + +#endif // GAME_H -- cgit v1.2.3-70-g09d2