# Allison Obourn
# CS 115, Autumn 2021
# Lecture 37

# This program draws two birds on a panel. They are horizontal from each other.
# Both are a light bright purple and facing forward.

# We initially wrote this code in lecture 22. All we did with this in lecture
# 37 was to move the bird function to a module and import that module here
# instead of rewriting the function. This allowed us to use that function in
# other programs without rewriting it. 

from ECGUI import *
from animals import *

def main():
    panel = drawing_panel(300, 300)
    bird(panel, 50)
    bird(panel, 200)


main()
