This commit is contained in:
Yohann D'ANELLO
2020-11-06 15:33:26 +01:00
parent e00d98739a
commit 8ccb74ea54
8 changed files with 83 additions and 63 deletions

View File

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