summary refs log tree commit diff stats
path: root/mazeoflife.h
blob: 6af0cf4a6e3169c49f6f1b5d992259c9eb502eee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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);

#endif