generated from technolyceum/ai6-m2
25 lines
393 B
Python
25 lines
393 B
Python
# asteroid_game.py - Starter Template
|
|
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)#Smppth animation
|
|
|
|
# CREATE PLAYER
|
|
|
|
|
|
# === GAME VARIABLES ===
|
|
|
|
|
|
# === FUNCTIONS ===
|
|
|
|
|
|
# === TEST CODE ===
|
|
# Uncomment this to test:
|
|
# draw_player()
|
|
# screen.update()
|
|
# turtle.done() |