Created
June 12, 2020 12:27
-
-
Save ProgDan/5fc7287d66cec77bbd9def072d83deb6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if head.distance(food) < 15: | |
| # Move a comida para uma posição aleatória na tela | |
| x = random.randint(-290, 290) | |
| y = random.randint(-290, 290) | |
| food.goto(x, y) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment