Started implementation of information about item used screen

This commit is contained in:
2026-03-02 01:57:43 -08:00
parent 46f0e78405
commit bc010a7d82
8 changed files with 182 additions and 38 deletions

View File

@@ -29,7 +29,6 @@ public partial class DummyPlayer : CharacterBody3D, IPlayer
public void Deactivate() => throw new NotImplementedException();
public void Die() => throw new NotImplementedException();
public void Equip(IEquipableItem equipable) => throw new NotImplementedException();
public void IdentifyItem(IBaseInventoryItem unidentifiedItem) => throw new NotImplementedException();
public void Knockback(float impulse) => throw new NotImplementedException();
public void LevelUp() => throw new NotImplementedException();
public void ModifyHealthTimerSpeed(float newModifier) => throw new NotImplementedException();
@@ -40,4 +39,5 @@ public partial class DummyPlayer : CharacterBody3D, IPlayer
public void TakeDamage(AttackData damage) => throw new NotImplementedException();
public void TeleportPlayer((Vector3 Rotation, Vector3 Position) newTransform) => throw new NotImplementedException();
public void Unequip(IEquipableItem equipable) => throw new NotImplementedException();
public IBaseInventoryItem IdentifyItem(IBaseInventoryItem unidentifiedItem) => throw new NotImplementedException();
}