blob: ac89a1be2b0d34fd973a69181067e33612cb6211 (
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")
|