9 lines
89 B
Python
9 lines
89 B
Python
from enum import Enum
|
|
|
|
|
|
class Direction(Enum):
|
|
LEFT = 1
|
|
RIGHT = 2
|
|
TOP = 3
|
|
BOTTOM = 4
|