SI_InteligentnyWozekWidlowy/ItemDisplayAgent.py

11 lines
308 B
Python
Raw Normal View History

2022-06-09 21:54:00 +02:00
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)