Skip to content

mbilenko03/GameOfLife

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GameOfLife

This project was based on Conway's Game of Life

What is this Project

This project was done for a java class that we took. We were tasked to make application making use of available graphics and to make it look nice. We decided to base our project off of a previously done project called Conway's Game of Life. This "game" is more of a simulation to roughly simulate life.


Game Rules

The rules for the game are fairly simple and are as follows. These are the rules shown on the wikipedia page for Conway's Game of Life

  1. Any live cell with fewer than two live neighbours dies, as if caused by underpopulation.
  2. Any live cell with two or three live neighbours lives on to the next generation.
  3. Any live cell with more than three live neighbours dies, as if by overpopulation.
  4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

Releases


Videos Showing Examples of this Project


About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%