summary refs log tree commit diff stats
path: root/mazeoflife.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2009-06-18 17:20:59 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-18 17:20:59 -0400
commit71045152800ab0cc0dce6ec70dba9d7f9bb9dab5 (patch)
tree7a2f76780cfd16ecf22ff82a0229631b83f5cd0a /mazeoflife.h
parent024d098c686ae971176332d91db91582ad353c17 (diff)
downloadmazeoflife-71045152800ab0cc0dce6ec70dba9d7f9bb9dab5.tar.gz
mazeoflife-71045152800ab0cc0dce6ec70dba9d7f9bb9dab5.tar.bz2
mazeoflife-71045152800ab0cc0dce6ec70dba9d7f9bb9dab5.zip
Started Board class
Diffstat (limited to 'mazeoflife.h')
-rw-r--r--mazeoflife.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/mazeoflife.h b/mazeoflife.h index 3cc6d6d..6af0cf4 100644 --- a/mazeoflife.h +++ b/mazeoflife.h
@@ -4,4 +4,7 @@
4const int WIDTH = 30; 4const int WIDTH = 30;
5const int HEIGHT = 30; 5const int HEIGHT = 30;
6 6
7void wrap(int* x, int* y);
8Uint32 getColor(int r, int g, int b);
9
7#endif 10#endif