def __init__(self, row: int, col: int):
   Monster.__init__(self, row, col)
   RandomAgent.__init__(self, self)
 def __init__(self, row: int, col: int):
     MapEntity.__init__(self, row, col, 4, EntityType.MOUSE)
     RandomAgent.__init__(self, self)