Fix player height

This commit is contained in:
2026-01-25 16:06:20 -08:00
parent bba0bb5ecd
commit 79dd6eb33a
7 changed files with 53 additions and 124 deletions

View File

@@ -18,16 +18,12 @@ public interface IPlayer : IKillable, ICharacterBody3D
public void LevelUp();
public void LookUp();
public void TeleportPlayer(Transform3D newTransform);
public void Equip(EquipableItem equipable);
public void Unequip(EquipableItem equipable);
public void Reset();
public IInventory Inventory { get; }
public IHealthComponent HealthComponent { get; }
@@ -50,6 +46,4 @@ public interface IPlayer : IKillable, ICharacterBody3D
public event Action PlayerDied;
public delegate InventoryItem RerollItem(InventoryItem item);
public event Action PointUpFinished;
}