Linting
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user