#! /usr/bin/python


# GENERAL FORMAT WE'LL USE FOR PYGAME PROGRAMS


# do all the program/pygame initialization
#   - importing modules
#   - setting up the screen
#   - loading core images, sounds, etc
#   - defining any global values (variables, constants)
#     used throughout the program




# define each of the different classes the game will use

# class X:
#       def __init__(self):
#            ......
#       def someroutine(self):
#            ....
#       ----
#       ----


# include the main control loop - the game cycle that's
# repeated while the game runs

# include any cleanup code, run once the game completes
