11 lines
308 B
Python
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)
|