This commit is contained in:
Boki 2026-03-06 14:37:05 -05:00
parent 4424f4c3a8
commit 0e7de0a5f3
281 changed files with 3188 additions and 611 deletions

9
src/Nexus.Core/Buff.cs Normal file
View file

@ -0,0 +1,9 @@
namespace Nexus.Core;
public record Buff
{
public string? Name { get; init; }
public float DurationRemaining { get; init; }
public int Charges { get; init; }
public bool IsDebuff { get; init; }
}