Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nirmal15mathew/raylib-projects
- Owner: nirmal15mathew
- License: mit
- Created: 2024-01-10T14:44:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-15T06:17:25.000Z (2 months ago)
- Last Synced: 2024-11-15T07:19:41.942Z (2 months ago)
- Language: Makefile
- Size: 532 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)