From 9323b5a507d96d5c4df738cf357414ba8b62bacf Mon Sep 17 00:00:00 2001 From: Pawel Felcyn Date: Sat, 22 Apr 2023 12:06:01 +0200 Subject: [PATCH] add agent action type --- agentActionType.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 agentActionType.py 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