diff --git a/board.py b/board.py index 3856a71..bab487b 100644 --- a/board.py +++ b/board.py @@ -1 +1,17 @@ -class Board: \ No newline at end of file +import Tkinter + +class Board(Frame): + h = 640 + w = 480 + +def __init__(self, parent): + Frame.__init__(self, parent, background = "black") + + self.parent = parent + + self.initUI() + +def placeApple(self): + import random + apple_h = random.randomInt(0, 640) + apple_w = random.randomInt(0, 480) \ No newline at end of file diff --git a/python.pptx b/python.pptx deleted file mode 100644 index 404e001..0000000 Binary files a/python.pptx and /dev/null differ