Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 817 Bytes

readme.md

File metadata and controls

21 lines (14 loc) · 817 Bytes

Game Of Life

Game of life is a cellular automation created by British mathematician John Horton Conway. It is a zero-player game that depends on the initial configuration of the cells. Over generation cells evolve into huge complex shapes or shrink into smaller ones.

Rules

  • Alive cell with two or three alive neighbours survives to the next generation.
  • Dead cell with three alive neighbours becomes alive in next generation.
  • Cell that do not fulfill any of the above rules stays dead.

Requirements

  • Java installed on your machine
  • JavaFX somewhere on your machine

Instalation

  1. In text editor open Artifacts/Game_Of_Life.bat
  2. Replace "INSERT PATH TO JAVAFX/lib HERE" with a path to the folder of JavaFX located on your machine
  3. Save file
  4. Run .bat in order to start programme