blob: 556a3f396f4895d693af1d8c3b128747b41ddcb2 (
plain)
1
2
3
4
5
6
7
8
|
class Tile:
def describe(self):
print("You push through the undergrowth - "
"the path is overgrown but continues on...")
def action(self, player, do):
# Nothing to do here yet.
print("Sorry, I don't understand")
|