├── .github └── workflows │ └── Build-Pyinstaller.yml ├── .gitignore ├── Build.bat ├── README.md ├── doc └── img │ ├── 1.png │ └── 2.png ├── image.png ├── requirements.txt └── start.py /.github/workflows/Build-Pyinstaller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccc007ccc/ZenlessZoneZero-Snake/HEAD/.github/workflows/Build-Pyinstaller.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccc007ccc/ZenlessZoneZero-Snake/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccc007ccc/ZenlessZoneZero-Snake/HEAD/Build.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccc007ccc/ZenlessZoneZero-Snake/HEAD/README.md -------------------------------------------------------------------------------- /doc/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccc007ccc/ZenlessZoneZero-Snake/HEAD/doc/img/1.png -------------------------------------------------------------------------------- /doc/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccc007ccc/ZenlessZoneZero-Snake/HEAD/doc/img/2.png -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccc007ccc/ZenlessZoneZero-Snake/HEAD/image.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | keyboard 2 | pyautogui 3 | opencv-python 4 | pyscreeze 5 | Pillow -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccc007ccc/ZenlessZoneZero-Snake/HEAD/start.py --------------------------------------------------------------------------------