Files
Craftimizer/Simulator/CharacterStats.cs
T
2023-06-19 10:03:57 -07:00

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