generated from technolyceum/ai6-m2
21 lines
271 B
Python
21 lines
271 B
Python
# asteroid_game.py - Starter Template
|
|
import turtle
|
|
import random
|
|
|
|
# === SETUP THE GAME WINDOW ===
|
|
|
|
|
|
# === CREATE PLAYER ===
|
|
|
|
|
|
# === GAME VARIABLES ===
|
|
|
|
|
|
# === FUNCTIONS ===
|
|
|
|
|
|
# === TEST CODE ===
|
|
# Uncomment this to test:
|
|
# draw_player()
|
|
# screen.update()
|
|
# turtle.done() |