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

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