Game Utils v1.1

This commit is contained in:
KuMiShi
2026-01-23 10:19:22 +01:00
parent 335185ded4
commit a57ee82e83
6 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
from .entity import Entity
class Player(Entity):
def __init__(self, name, strength, dexterity, intelligence, wisdom, charisma, hp, armor, speed, item=None):
super().__init__(name, strength, dexterity, intelligence, wisdom, charisma, hp, armor, speed)
self.item = item