blob: c12ac9b34e25fc560e999800f710d11cfdd007ad (
plain)
1
2
3
4
5
6
7
|
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")
|