diff --git a/android_game.py b/android_game.py index b6ac2d6..af43664 100644 --- a/android_game.py +++ b/android_game.py @@ -3,7 +3,11 @@ import turtle import random # === SETUP THE GAME WINDOW === - +screen = turtle.Screen() +screen.setup(600,600) +screen.bgcolor("black") +screen.title("Asteroid game") +screen.tracer(0) # === CREATE PLAYER ===