14 lines
384 B
Python
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))
|