SI_InteligentnyWozekWidlowy/ItemDisplayAgent.py
2022-06-09 22:37:36 +02:00

11 lines
308 B
Python

from PatchAgent import PatchAgent
from PatchType import PatchType
from util.PathDefinitions import GridLocation
class ItemDisplayAgent(PatchAgent):
def __init__(self, model, location: GridLocation):
self.image = None
super().__init__(model, location, patch_type=PatchType.itemDisplay)