game of life master
authorGeorgios Atheridis <atheridis@tutamail.com>
Thu, 7 Jul 2022 06:29:25 +0000 (09:29 +0300)
committerGeorgios Atheridis <atheridis@tutamail.com>
Thu, 7 Jul 2022 06:29:25 +0000 (09:29 +0300)
commit38335c375f286f9b869cf43a9b9b5d5953487402
tree0d2af9468975bdbbdc41eebdad2f3997acb04434
game of life
13 files changed:
.flake8 [new file with mode: 0644]
.gitignore [new file with mode: 0644]
LICENSE [new file with mode: 0644]
README.md [new file with mode: 0644]
game_of_life/__init__.py [new file with mode: 0644]
game_of_life/board.py [new file with mode: 0755]
game_of_life/cell.py [new file with mode: 0755]
game_of_life/data/save.json [new file with mode: 0644]
game_of_life/data/settings.json [new file with mode: 0644]
game_of_life/game_of_life.py [new file with mode: 0644]
game_of_life/main.py [new file with mode: 0644]
requirements.txt [new file with mode: 0644]
setup.py [new file with mode: 0644]