e190368d62
- Split into several projects - All dalamud/lumina deps are in the plugin - Crafty/craftingway sim implemented! - optimizations to follow
13 lines
337 B
C#
13 lines
337 B
C#
namespace Craftimizer.Simulator;
|
|
|
|
public 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; }
|
|
}
|