Add items in inventory

This commit is contained in:
Yohann D'ANELLO
2020-11-11 16:49:04 +01:00
parent f11fb31c28
commit d35331fdb0
2 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,7 @@ class Player(FightingEntity):
level: int = 1
current_xp: int = 0
max_xp: int = 10
inventory: list = list()
paths: Dict[Tuple[int, int], Tuple[int, int]]
def move(self, y: int, x: int) -> None: