SI_InteligentnyWozekWidlowy/data/Direction.py
Aleksander Szamałek 59676e176a Pathfinder
2022-04-08 00:43:25 +02:00

9 lines
99 B
Python

from enum import Enum
class Direction(Enum):
top = 1
right = 2
down = 3
left = 4