Simple Conway's Game of Life
Play
- [R] randomize
- [P] pause and unpause
- [W] speed up
- [S] speed down
- [A] change ALIVE color (Random)
- [D] change DEAD color (Random)
# build
$ build_desktop.bat
# run
$ build\game_desktop.exe
# build and run in one line
$ call build_desktop.bat && build\game_desktop.exe
# debug build (for checking memory leaks)
$ build_desktop.bat --debug
# release build
$ build_desktop.bat --release
# build
$ build_web.bat
# go to localhost:8000 in your browser
$ python -m http.server
# release build
$ build_web.bat --release