From 66dcf910bd4744d8ced56cb9586aa937a1a2d4c5 Mon Sep 17 00:00:00 2001 From: vg Date: Tue, 7 Jul 2020 16:24:01 +0200 Subject: first commit --- instructables/cube_pc/gameoflife.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 instructables/cube_pc/gameoflife.h (limited to 'instructables/cube_pc/gameoflife.h') diff --git a/instructables/cube_pc/gameoflife.h b/instructables/cube_pc/gameoflife.h new file mode 100644 index 0000000..8e88be6 --- /dev/null +++ b/instructables/cube_pc/gameoflife.h @@ -0,0 +1,9 @@ +#ifndef GOL_H +#define GOL_H + +void gol_play (int iterations, int delay); +unsigned char gol_count_neighbors (int x, int y, int z); +void gol_nextgen (void); +int gol_count_changes (void); + +#endif -- cgit v1.2.3