├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── resources ├── fonts │ ├── free_sans_bold.ttf │ └── product_sans_bold.ttf ├── gifs │ ├── download_repo.gif │ ├── dqn_gameplay.gif │ └── gameplay.gif ├── images │ ├── ingame_snake_logo.png │ └── snake_logo.png └── scores.json ├── setup.cfg ├── setup.py ├── snake.py └── utilities ├── __init__.py └── text_block.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | 4 | snake_on_pygame.egg-info/ 5 | 6 | dist/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/fonts/free_sans_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/resources/fonts/free_sans_bold.ttf -------------------------------------------------------------------------------- /resources/fonts/product_sans_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/resources/fonts/product_sans_bold.ttf -------------------------------------------------------------------------------- /resources/gifs/download_repo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/resources/gifs/download_repo.gif -------------------------------------------------------------------------------- /resources/gifs/dqn_gameplay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/resources/gifs/dqn_gameplay.gif -------------------------------------------------------------------------------- /resources/gifs/gameplay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/resources/gifs/gameplay.gif -------------------------------------------------------------------------------- /resources/images/ingame_snake_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/resources/images/ingame_snake_logo.png -------------------------------------------------------------------------------- /resources/images/snake_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/resources/images/snake_logo.png -------------------------------------------------------------------------------- /resources/scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/resources/scores.json -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | # Inside of setup.cfg 2 | [metadata] 3 | description-file = README.md 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/setup.py -------------------------------------------------------------------------------- /snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/snake.py -------------------------------------------------------------------------------- /utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/text_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voaneves/snake-on-pygame/HEAD/utilities/text_block.py --------------------------------------------------------------------------------