Merging from api

This commit is contained in:
KuMiShi
2026-01-30 17:08:55 +01:00
12 changed files with 461 additions and 163 deletions

View File

@@ -1,7 +1,6 @@
from entity import Entity
# Game imports
from entities.entity import Entity
class Player(Entity):
def __init__(self, name, strength, dexterity, intelligence, wisdom, charisma, hp, armor, speed, equipped_item=None):
super().__init__(name, strength, dexterity, intelligence, wisdom, charisma, hp, armor, speed, equipped_item)