13 lines
167 B
Python
13 lines
167 B
Python
from enum import Enum
|
|
|
|
|
|
class Direction(Enum):
|
|
LEFT = 1
|
|
RIGHT = -1
|
|
TOP = 2
|
|
BOTTOM = -2
|
|
|
|
|
|
def mirror(direction: Direction):
|
|
return Direction(direction.value * -1)
|