# shape.py

# modified from code in Object-Oriented Python, by Irv Kalb

# a base class for shapes

import random

# # Set up the colors
RED = (255, 0, 0)
GREEN = (0, 255, 0)
BLUE = (0, 0, 255)

class Shape:
    def __init__(self, window, max_width, max_height):
        self.window = window
        self.color  = random.choice((RED, GREEN, BLUE))
        self.x      = random.randrange(1, max_width - 100)
        self.y      = random.randrange(25, max_height - 100)
    
    def draw(self):
        pass
    
    
    