tverghis / bosh

A simple Game of Life engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rules:

  • The Universe is an infinite two-dimensional grid.
  • Each cell can be in two states: Alive or Dead.
  • Each cell has eight neighbors.
  • An Alive cell with fewer than two neighbors dies in the next generation.
  • An Alive cell with greater than three neighbors dies in the next generation.
  • A Dead cell with exactly three Alive neighbors becomes Alive in the next generation.

About

A simple Game of Life engine

License:MIT License


Languages

Language:Rust 100.0%