Archived
1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
game_of_life/include/globals.h

18 lines
298 B
C
Raw Normal View History

2024-09-11 17:48:22 +00:00
#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