Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nirmal15mathew/raylib-projects

a collection of projects done in raylib
https://github.com/nirmal15mathew/raylib-projects

Last synced: 2 months ago
JSON representation

a collection of projects done in raylib

Awesome Lists containing this project

README

        

# raylib-projects
a collection of projects done in raylib

### Conway's Game of life

It is a zero player game designed by Mathematician John Conway which shows a turing complete machine that shows that life can be formed from simple rules.
The rules of conway's game of life are
- Any live cell with fewer than two live neighbours dies, as if by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

![Image of Conway's Game of Life](https://github.com/nirmal15mathew/raylib-projects/blob/main/Screenshot%20from%202024-11-15%2011-44-55.png?raw=true)