sztuczna_inteligencja_2023_.../gridCellType.py

8 lines
162 B
Python
Raw Normal View History

2023-04-22 12:04:08 +02:00
from enum import Enum
class GridCellType(Enum):
NOTHING = 0
STREET_VERTICAL = 1
STREET_HORIZONTAL = 2
2023-04-22 16:17:00 +02:00
GARBAGE_CAN = 3
VISITED_GARBAGE_CAN = 4