from ..interfaces import FightingEntity, Map class Monster(FightingEntity): def act(self, map: Map) -> None: pass class Squirrel(Monster): maxhealth = 10 strength = 3