diff options
Diffstat (limited to 'mpi/include/game.h')
-rw-r--r-- | mpi/include/game.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mpi/include/game.h b/mpi/include/game.h new file mode 100644 index 0000000..135fd8a --- /dev/null +++ b/mpi/include/game.h @@ -0,0 +1,19 @@ +#include <stdlib.h> +#include <stdio.h> +#include <string.h> + +#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, unsigned char* halo_above, unsigned char* halo_below); +void next(struct GAME* game, unsigned char* halo_above, unsigned char* halo_below); +void randomize(struct GAME* game); + +#endif // GAME_H |