Verteiltesystheme/Code/Communication/Direction.py

9 lines
89 B
Python
Raw Normal View History

from enum import Enum
class Direction(Enum):
LEFT = 1
RIGHT = 2
TOP = 3
BOTTOM = 4