Implement plasma sword instakill

This commit is contained in:
2026-02-09 23:01:52 -08:00
parent bfaa324e6a
commit aba325ff2b
12 changed files with 273 additions and 219 deletions

View File

@@ -46,6 +46,10 @@ public interface IPlayer : IKillable, ICharacterBody3D
public bool CanEquipState { get; set; }
public int TotalAttack { get; }
public int TotalDefense { get; }
public int TotalLuck { get; }
public event Action PlayerDied;
public delegate InventoryItem RerollItem(InventoryItem item);
}