Skip to content

ntdkhang/TheGameOfLife

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Conway's Game of Life

Rules

Conway's Game of Life is a zero-player game where the game starts with some inital stage and continue step by step, following these rules:

  • Any live cell with two or three neighbors will live.
  • Any dead cell with exactly three neighbors will live.
  • Otherwise, the live cell will die, or the dead cell will remain dead.

(The last two play halted immediately after launch, which is quite rare)

Tech

Implemented this with SwiftUI and Canvas

To-do

  • Create presets for the initial stage
  • Infinite map
  • Finite but the cells at the edge can interact with cells from the other side of the screen.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages