class Wall: """ A simple wall tile. It just sits on the board and blocks movement. """ character = "█" blocks_movement = True def __init__(self, position): # position is a tuple (x, y) self.position = position