Yohann D'ANELLO 8ccb74ea54 Linting
2020-11-06 15:33:26 +01:00

12 lines
191 B
Python

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