Files
2024-06-30 18:58:14 -07:00

13 lines
369 B
C#

namespace Craftimizer.Simulator;
public sealed record CharacterStats
{
public int Craftsmanship { get; init; }
public int Control { get; init; }
public int CP { get; init; }
public int Level { get; init; }
public bool CanUseManipulation { get; init; }
public bool HasSplendorousBuff { get; init; }
public bool IsSpecialist { get; init; }
}