aboutsummaryrefslogtreecommitdiffstats
path: root/cube_pc_test1/gameoflife.h
blob: 8e88be6e062e93d69d17da42e6901362184e81cc (plain)
1
2
3
4
5
6
7
8
9
#ifndef GOL_H
#define GOL_H

void gol_play (int iterations, int delay);
unsigned char gol_count_neighbors (int x, int y, int z);
void gol_nextgen (void);
int gol_count_changes (void);

#endif