Skip to content

zoetian/game_of_life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game of Life

Demo Screenshot

Rules

  • Given a board with m by n cells, each cell has an initial state live (1) or dead (0).
  • Each cel interacts with its 8 neighbours using the following 4 rules:
      1. any live cell with fewer than 2 live neighbours dies, as if caused by under-population
      1. any live cell with 2 or 3 live neighbours lives on to the next generation
      1. any live cell with more than 3 live neighbours dies, as if by over-population
      1. any dead cell with exactly 3 live neighbours becomes a live cell, as if by reproduction

About

👾 game of life + fps ctrl menu

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published