View difference between Paste ID: YUMR2z5B and Avi4rTG0
SHOW: | | - or go back to the newest paste.
1
from enum import Enum
2
3
4
class Direction(Enum):
5
    UP = 0
6
    RIGHT = 1
7
    DOWN = 2
8
    LEFT = 3
9