Big changes 2
- Split into several projects - All dalamud/lumina deps are in the plugin - Crafty/craftingway sim implemented! - optimizations to follow
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
namespace Craftimizer.Simulator;
|
||||
|
||||
public record RecipeInfo
|
||||
{
|
||||
public bool IsExpert { get; init; }
|
||||
public int ClassJobLevel { get; init; }
|
||||
public int RLvl { get; init; }
|
||||
public ushort ConditionsFlag { get; init; }
|
||||
public int MaxDurability { get; init; }
|
||||
public int MaxQuality { get; init; }
|
||||
public int MaxProgress { get; init; }
|
||||
|
||||
public int QualityModifier { get; init; }
|
||||
public int QualityDivider { get; init; }
|
||||
public int ProgressModifier { get; init; }
|
||||
public int ProgressDivider { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user