states #18

Merged
s473616 merged 4 commits from states into master 2023-04-22 12:12:33 +02:00
Showing only changes of commit 9323b5a507 - Show all commits

6
agentActionType.py Normal file
View File

@ -0,0 +1,6 @@
from enum import Enum
class AgentActionType (Enum):
MOVE_FORWARD = 0
TURN_LEFT = 1
TURN_RIGHT = 2