2026-rff_mp/MusinAA/task2/mazeObjects/cell.py

14 lines
485 B
Python
Raw Normal View History

2026-04-24 03:14:07 +00:00
class Cell:
"""Хранит координаты (x, y)
флаги isWall, isStart, isExit
метод isPassable() (возвращает True для прохода, если не стена)."""
def __init__(self, x: int, y: int, isWall = False, isStart = False, isExit = False):
self.x = x
self.y = y
self.isWall = isWall
self.isStart = isStart
self.isExit = isExit
def isPassable(self):
return not self.isWall