An example of item

This commit is contained in:
Nicolas Margulies
2020-10-23 18:02:57 +02:00
parent 343e107b86
commit 2ba7330ff5
3 changed files with 23 additions and 2 deletions

View File

@ -1,7 +1,7 @@
from ..interfaces import FightingEntity
class Monster(FightingEntity):
def behaviour(self, map):
def act(self, map):
pass
class Squirrel(Monster):