from tWrapper import tWrapper

# wrapper for any additional drawing routines
# that need to know about each other
class turtleWrapper(tWrapper):

def drawMain(dc_local, w, turtleWrapper=turtleWrapper):
    t = turtleWrapper(dc_local)
    t.cls()
