diff --git a/agentActionType.py b/agentActionType.py new file mode 100644 index 0000000..b251b0c --- /dev/null +++ b/agentActionType.py @@ -0,0 +1,6 @@ +from enum import Enum + +class AgentActionType (Enum): + MOVE_FORWARD = 0 + TURN_LEFT = 1 + TURN_RIGHT = 2 \ No newline at end of file