summary refs log tree commit diff stats
path: root/mazeoflife.h
diff options
context:
space:
mode:
Diffstat (limited to 'mazeoflife.h')
-rw-r--r--mazeoflife.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/mazeoflife.h b/mazeoflife.h index d81c3ea..1f43214 100644 --- a/mazeoflife.h +++ b/mazeoflife.h
@@ -3,9 +3,11 @@
3 3
4const int WIDTH = 30; 4const int WIDTH = 30;
5const int HEIGHT = 30; 5const int HEIGHT = 30;
6const int TICKDELAY = 10;
6 7
7void wrap(int* x, int* y); 8void wrap(int* x, int* y);
8Uint32 getColor(int r, int g, int b); 9Uint32 getColor(int r, int g, int b);
9void changeState(State* nState); 10void changeState(State* nState);
11Uint32 tick(Uint32 interval, void *param);
10 12
11#endif 13#endif