MCPcopy Index your code
hub / github.com/geekcomputers/Python / handle_snake_left

Function handle_snake_left

Snake Game Using Turtle/main.py:148–151  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

146 start_game()
147 snake.down()
148def handle_snake_left():
149 if game_state in ["start", "playing"]:
150 start_game()
151 snake.left()
152def handle_snake_right():
153 if game_state in ["start", "playing"]:
154 start_game()

Callers

nothing calls this directly

Calls 2

leftMethod · 0.80
start_gameFunction · 0.70

Tested by

no test coverage detected