from enum import Enum class direction(Enum): NORTH = 1 SOUTH = 2 EAST = 3 WEST = 4 UP = 5 DOWN = 6