#################################################
# hw7.py
#
# Your Name:
# Your Andrew ID:
#################################################

######################################################################
# ignore_rest: The autograder will ignore all code below here
######################################################################

import cs112_m20_unit7_linter
from cmu_112_graphics import *

####################################
# Add your hw5 and hw6 functions here!
# You may need to modify them a bit.
# Those are: isLegalSudoku and
# drawSudokuBoard
# OR
# getValidChessMoves and
# drawChessBoard
####################################



####################################
# customize these functions
####################################

def appStarted(app):
    # load app.xyz as appropriate
    pass

def mousePressed(app, event):
    # use event.x and event.y
    pass

def keyPressed(app, event):
    # use event.key
    pass

def redrawAll(app, canvas):
    # draw in canvas
    pass

####################################
# Main
####################################

def main():
    cs112_m20_unit7_linter.lint()
    runApp(width=800, height=800)

if __name__ == "__main__":
    main()
