lots done

This commit is contained in:
Boki 2026-03-02 11:17:37 -05:00
parent 1ba7c39c30
commit fbd0ba445a
59 changed files with 6074 additions and 3598 deletions

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

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