Conway's Game of Life implementation.
- Each cell with one or no neighbors dies
- Each cell with four or more neighbors dies
- Each cell with two or three neighbors survives.
- Each cell with three neighbors becomes populated.
(C) 2016-2023 Denis Meyer
- "Live" update cells via mouse click while game is running
- Different generation speeds
- Manual next generation
- Configurable field size
- Import & Export patterns
- Example patterns (under "patterns")
- Java 17
- Gradle 7.3.3

