https://github.com/kvizyx/gof
Game of Life!
https://github.com/kvizyx/gof
cpp game-of-life
Last synced: about 1 year ago
JSON representation
Game of Life!
- Host: GitHub
- URL: https://github.com/kvizyx/gof
- Owner: kvizyx
- Created: 2023-11-02T15:15:57.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-27T06:10:43.000Z (over 1 year ago)
- Last Synced: 2025-02-14T14:56:40.502Z (over 1 year ago)
- Topics: cpp, game-of-life
- Language: C++
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Game of Life
Simple implementation of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life)
# How to play
## Prerequisites
- `g++` compiler
- `make` (if you want to use build script)
## Launch
With default settings:
```console
$ make
```
With custom height and width
```console
$ make build
$ ./gof --h [HEIGHT] --w [WIDTH]
```