diff --git a/game/common/enums.py b/game/common/enums.py index eebe156..a010769 100644 --- a/game/common/enums.py +++ b/game/common/enums.py @@ -16,6 +16,7 @@ class ObjectType(Enum): GAMEBOARD = auto() VECTOR = auto() TILE = auto() + WALL = auto() ITEM = auto() STATION = auto() OCCUPIABLE_STATION = auto() diff --git a/game/common/map/wall.py b/game/common/map/wall.py new file mode 100644 index 0000000..dff908d --- /dev/null +++ b/game/common/map/wall.py @@ -0,0 +1,9 @@ +from game.common.enums import ObjectType +from game.common.game_object import GameObject + + +class Wall(GameObject): + def __init__(self): + super().__init__() + self.object_type = ObjectType.WALL + \ No newline at end of file