SI_InteligentnyWozekWidlowy/PictureVisualizationAgent.py
Aleksander Szamałek 668ed6edf9 visual improvements
2022-05-25 23:52:03 +02:00

14 lines
384 B
Python

from AgentBase import AgentBase
from util.PathDefinitions import GridLocation
class PictureVisualizationAgent(AgentBase):
def __init__(self, model, location: GridLocation):
self.location = location
self.img = ""
super().__init__(model)
def creation_log(self):
print("Created Patch Agent [id: {} ,img: {}]".format(self.unique_id, self.img))