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

const int WIDTH = 30;
const int HEIGHT = 30;
const int TICKDELAY = 5;

void wrap(int* x, int* y);
Uint32 getColor(int r, int g, int b);
void changeState(State* nState);
Uint32 tick(Uint32 interval, void *param);
TTF_Font* loadFont(int size);
const char* getDataFile();

#endif