Files
Craftimizer/Simulator/CharacterStats.cs
T
2023-06-23 03:02:03 -07:00

14 lines
404 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; }
public int CLvl { get; init; }
}