diff options
Diffstat (limited to 'mazeoflife.h')
| -rw-r--r-- | mazeoflife.h | 10 |
1 files changed, 10 insertions, 0 deletions
| diff --git a/mazeoflife.h b/mazeoflife.h new file mode 100644 index 0000000..6af0cf4 --- /dev/null +++ b/mazeoflife.h | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #ifndef MAZEOFLIFE_H | ||
| 2 | #define MAZEOFLIFE_H | ||
| 3 | |||
| 4 | const int WIDTH = 30; | ||
| 5 | const int HEIGHT = 30; | ||
| 6 | |||
| 7 | void wrap(int* x, int* y); | ||
| 8 | Uint32 getColor(int r, int g, int b); | ||
| 9 | |||
| 10 | #endif | ||
