├── .gitignore ├── LICENSE ├── README.md ├── datatypes.py ├── game.py ├── index.html ├── player.py ├── requirements.txt ├── server.py ├── settings.py ├── simple ├── game_loop_basic.py ├── game_loop_global.py ├── game_loop_handler.py ├── game_loop_process.py ├── game_loop_thread.py ├── game_loop_wait.py └── index.html └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/README.md -------------------------------------------------------------------------------- /datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/datatypes.py -------------------------------------------------------------------------------- /game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/game.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/index.html -------------------------------------------------------------------------------- /player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/player.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/server.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/settings.py -------------------------------------------------------------------------------- /simple/game_loop_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/simple/game_loop_basic.py -------------------------------------------------------------------------------- /simple/game_loop_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/simple/game_loop_global.py -------------------------------------------------------------------------------- /simple/game_loop_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/simple/game_loop_handler.py -------------------------------------------------------------------------------- /simple/game_loop_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/simple/game_loop_process.py -------------------------------------------------------------------------------- /simple/game_loop_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/simple/game_loop_thread.py -------------------------------------------------------------------------------- /simple/game_loop_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/simple/game_loop_wait.py -------------------------------------------------------------------------------- /simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/simple/index.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7WebPages/snakepit-game/HEAD/style.css --------------------------------------------------------------------------------