├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── audios └── bgm.wav ├── demo ├── console_snake_demo.gif ├── console_snake_demo.mp4 └── mp42gif.sh ├── docker └── snake.Dockerfile └── src ├── CMakeLists.txt ├── game.cpp ├── game.h ├── main.cpp ├── snake.cpp └── snake.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/README.md -------------------------------------------------------------------------------- /audios/bgm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/audios/bgm.wav -------------------------------------------------------------------------------- /demo/console_snake_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/demo/console_snake_demo.gif -------------------------------------------------------------------------------- /demo/console_snake_demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/demo/console_snake_demo.mp4 -------------------------------------------------------------------------------- /demo/mp42gif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/demo/mp42gif.sh -------------------------------------------------------------------------------- /docker/snake.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/docker/snake.Dockerfile -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/src/game.cpp -------------------------------------------------------------------------------- /src/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/src/game.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/snake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/src/snake.cpp -------------------------------------------------------------------------------- /src/snake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/Console-Snake/HEAD/src/snake.h --------------------------------------------------------------------------------