This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Exercise 43: Basic Object-Oriented Analysis and Design | |
# http://learnpythonthehardway.org/book/ex43.html | |
# STAGE 1 - this works | |
# only classes Map and Engine are really built | |
# each Scene child-class can be run | |
# start w/ skeleton from Zed, then build it out | |
class Scene(object): |