sztuczna_inteligencja_2023_.../gridCellType.py

7 lines
134 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
GARBAGE_CAN = 3