https://github.com/comba92/life-automata
⬜⬛ C++ implementation with SDL2 of Conway's Game of Life
https://github.com/comba92/life-automata
conways-game-of-life cpp game makefile sdl2 simulation
Last synced: 3 days ago
JSON representation
⬜⬛ C++ implementation with SDL2 of Conway's Game of Life
- Host: GitHub
- URL: https://github.com/comba92/life-automata
- Owner: Comba92
- Created: 2023-11-19T11:10:42.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T08:17:28.000Z (over 1 year ago)
- Last Synced: 2025-06-20T23:07:41.137Z (4 months ago)
- Topics: conways-game-of-life, cpp, game, makefile, sdl2, simulation
- Language: C
- Homepage:
- Size: 7.93 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ⬛⬜ Life Automata
C implementation of Conway's game of life with SDL2.
It's an old project from August 2022, which I never polished and published.
Now it lives again.
# Build
make and g++ are required. SDL2 is included in the libs folder.```bash
make
```# Keys
- Space Turn on/off the simulation
- Click Add/remove cells from the grid. Clicking on an empty cell adds, while clicking on a living cell removes it.