17 lines
298 B
C
17 lines
298 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define CELL_SIZE 20
|
|
|
|
#define GRID_WIDTH 64
|
|
#define GRID_HEIGHT 48
|
|
|
|
#define WINDOW_WIDTH GRID_WIDTH * CELL_SIZE
|
|
#define WINDOW_HEIGHT GRID_HEIGHT * CELL_SIZE
|
|
|
|
#define FRAMES_PER_SECOND 60
|
|
#define UPDATES_PER_SECOND 5
|
|
|
|
#define ALIVE true
|
|
#define DEAD false
|
|
#endif
|