├── .DS_Store ├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── ai.py ├── elements ├── apple.png └── square.png ├── requirements.txt └── snake.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7enTropy7/Serpinco_/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7enTropy7/Serpinco_/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7enTropy7/Serpinco_/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7enTropy7/Serpinco_/HEAD/README.md -------------------------------------------------------------------------------- /ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7enTropy7/Serpinco_/HEAD/ai.py -------------------------------------------------------------------------------- /elements/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7enTropy7/Serpinco_/HEAD/elements/apple.png -------------------------------------------------------------------------------- /elements/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7enTropy7/Serpinco_/HEAD/elements/square.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7enTropy7/Serpinco_/HEAD/requirements.txt -------------------------------------------------------------------------------- /snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7enTropy7/Serpinco_/HEAD/snake.py --------------------------------------------------------------------------------