add agent action type

This commit is contained in:
Pawel Felcyn 2023-04-22 12:06:01 +02:00
parent aba8285469
commit 9323b5a507
1 changed files with 6 additions and 0 deletions

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