summary refs log tree commit diff stats
path: root/src/mazeoflife.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2009-06-19 10:57:53 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-19 10:57:53 -0400
commit684a27ce13a9a08f4f1d94621cdab1232d2d33cf (patch)
tree4b85d42802b588767b6ac7b6972f2093154c7196 /src/mazeoflife.h
parent1e3808b3338ff3b1499e000ce1f23e87d6050b8c (diff)
downloadmazeoflife-684a27ce13a9a08f4f1d94621cdab1232d2d33cf.tar.gz
mazeoflife-684a27ce13a9a08f4f1d94621cdab1232d2d33cf.tar.bz2
mazeoflife-684a27ce13a9a08f4f1d94621cdab1232d2d33cf.zip
Added GNU configure stuff
Diffstat (limited to 'src/mazeoflife.h')
-rw-r--r--src/mazeoflife.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mazeoflife.h b/src/mazeoflife.h new file mode 100644 index 0000000..6af0cf4 --- /dev/null +++ b/src/mazeoflife.h
@@ -0,0 +1,10 @@
1#ifndef MAZEOFLIFE_H
2#define MAZEOFLIFE_H
3
4const int WIDTH = 30;
5const int HEIGHT = 30;
6
7void wrap(int* x, int* y);
8Uint32 getColor(int r, int g, int b);
9
10#endif