from enum import Enum class AgentActionType (Enum): MOVE_FORWARD = 0 TURN_LEFT = 1 TURN_RIGHT = 2