SI_InteligentnyWozekWidlowy/PictureVisualizationAgent.py

14 lines
384 B
Python
Raw Permalink Normal View History

2022-05-25 23:51:29 +02:00
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))