This commit is contained in:
2026-04-25 22:06:37 -07:00
parent 2fe007c59d
commit a55ab4a342
11 changed files with 417 additions and 193 deletions

View File

@@ -22,6 +22,7 @@ public partial class DummyPlayer : CharacterBody3D, IPlayer
public float HealthTimerSpeedModifier { get; }
public bool AutoIdentifyItems { get; set; }
public IStatusEffectComponent StatusEffectComponent { get; }
public bool BriefImmunity { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public event Action PlayerDied;
@@ -41,4 +42,5 @@ public partial class DummyPlayer : CharacterBody3D, IPlayer
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();
public void EnactBriefImmunity() => throw new NotImplementedException();
}