7 lines
68 B
Python
7 lines
68 B
Python
from enum import Enum
|
|
|
|
|
|
class Direction(Enum):
|
|
LEFT = 1
|
|
RIGHT = 2
|