Spawn also items

This commit is contained in:
Yohann D'ANELLO
2020-11-11 16:23:27 +01:00
parent d75f4290ff
commit 2b5d82db57
5 changed files with 21 additions and 7 deletions

View File

@ -16,6 +16,10 @@ class Item(Entity):
self.held = True
class Heart(Item):
name = "heart"
class Bomb(Item):
name = "bomb"
damage: int = 5