2023-04-22 16:17:00 +02:00
|
|
|
from agentOrientation import AgentOrientation
|
|
|
|
from typing import Tuple
|
|
|
|
|
|
|
|
class AgentState:
|
|
|
|
orientation: AgentOrientation
|
|
|
|
position: Tuple[int, int]
|
|
|
|
|
|
|
|
def __init__(self, position: Tuple[int, int], orientation: AgentOrientation) -> None:
|
|
|
|
self.orientation = orientation
|
2023-05-15 11:49:58 +02:00
|
|
|
self.position = position
|