1
0
Fork 0
Verteiltesystheme-game-of-life/Code/Communication/Direction.py

7 lines
68 B
Python

from enum import Enum
class Direction(Enum):
LEFT = 1
RIGHT = 2