blob: 1484ca42462317d5dc3357110d9ba3acc7d3f83d (
plain)
1
2
3
4
5
6
7
8
|
class Tile:
def describe(self):
print("A path runs through dense jungle. To the north, you can see the "
"entrance to a cave.")
def action(self, player, do):
# Nothing to do here yet.
print("Sorry, I don't understand")
|