https://github.com/jasonliang-dev/game-of-life
Conway's Game of Life in C
https://github.com/jasonliang-dev/game-of-life
Last synced: about 1 month ago
JSON representation
Conway's Game of Life in C
- Host: GitHub
- URL: https://github.com/jasonliang-dev/game-of-life
- Owner: jasonliang-dev
- Created: 2019-12-05T21:57:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-14T05:50:09.000Z (over 4 years ago)
- Last Synced: 2025-01-25T09:27:57.080Z (3 months ago)
- Language: C
- Size: 375 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Preview
![]()
# Usage
- Left click to make a cell alive
- Right click to make a cell dead
- Spacebar to play/pause
- Left arrow to slow down, right arrow to speed up# Downloads
- [Windows](https://github.com/jasonliang-dev/game-of-life/releases/download/v1.0/game-of-life-windows-x64.zip)
- [Linux](https://github.com/jasonliang-dev/game-of-life/releases/download/v1.0/game-of-life-linux.zip)# Building
Install pkg-config, SDL2, SDL2_image, then run the commands below:
```
mkdir build
cd build
cmake ..
make
./GameOfLife
```