Source code for game.common.map.wall
from game.common.enums import ObjectType
from game.common.game_object import GameObject
[docs]class Wall(GameObject):
"""
`Wall Class Note:`
The Wall class is used for creating objects that border the map. These are impassable.
"""
def __init__(self):
super().__init__()
self.object_type = ObjectType.WALL