blob: 2c7fa18b1d0faf9c1f047c2e0a5abf9c1bdcb6f1 (
plain)
1
2
3
4
5
6
7
|
class Tile:
def describe(self):
print("The beach makes a nice little curve on that spot. There are "
"some pine trees around too. A really quiet sceenery!\n")
def action(self, player, do):
print("Sorry, I don't understand.\n")
|