-
Notifications
You must be signed in to change notification settings - Fork 866
Description
🎮 Game Request
Game logic and basic description:
This basic logic forms the foundation of Life's Mosaic, allowing for the exploration of complex patterns and behaviors emerging from simple rules.The universe is an infinite, two-dimensional orthogonal grid of square cells.
Each cell can be in one of two states: ALIVE or DEAD.
Each cell interacts with its eight neighbors (horizontally, vertically, and diagonally adjacent cells).
Rules:
Underpopulation: Any live cell with fewer than two live neighbors dies.
Survival: Any live cell with two or three live neighbors lives on to the next generation.
Overpopulation: Any live cell with more than three live neighbors dies.
Reproduction: Any dead cell with exactly three live neighbors becomes a live cell.
Point down the features
Controls: Play, Pause, Fast Forward, Slow Down, Clear, Random
Preset patterns (e.g., Glider, Gosper Glider Gun)
Select program in which you are contributing
GSSoC24
Code of Conduct
- I follow CONTRIBUTING GUIDELINE of this project.