Setup the screen

This commit is contained in:
2025-12-16 12:25:38 +03:00
parent 7352cc04e5
commit 1dce85ab21

View File

@@ -2,10 +2,14 @@
import turtle
import random
# === SETUP THE GAME WINDOW ===
# SETUP THE GAME WINDOW
screen = turtle.Screen()
screen.setup(600,600)
screen.bgcolor("black")
screen.title("Asteroid Game")
screen.tracer(0)#Smppth animation
# === CREATE PLAYER ===
# CREATE PLAYER
# === GAME VARIABLES ===