Files
Craftimizer/Simulator/CharacterStats.cs
T
Asriel Camora c1caa46838 Minor changes
2023-06-23 00:19:32 -07:00

13 lines
354 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 HasSplendorousBuff { get; init; }
public bool IsSpecialist { get; init; }
public int CLvl { get; init; }
}