summary refs log tree commit diff stats
path: root/mazeoflife.h
blob: d81c3eac1a6dcb90bad7c89c840a33296f004e8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MAZEOFLIFE_H
#define MAZEOFLIFE_H

const int WIDTH = 30;
const int HEIGHT = 30;

void wrap(int* x, int* y);
Uint32 getColor(int r, int g, int b);
void changeState(State* nState);

#endif