sztuczna_inteligencja_2023_.../gridCellType.py
2023-04-22 16:17:00 +02:00

8 lines
162 B
Python

from enum import Enum
class GridCellType(Enum):
NOTHING = 0
STREET_VERTICAL = 1
STREET_HORIZONTAL = 2
GARBAGE_CAN = 3
VISITED_GARBAGE_CAN = 4