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,12 @@
|
||||
using System;
|
||||
|
||||
namespace Craftimizer.Simulator;
|
||||
|
||||
public readonly record struct SimulationInput
|
||||
{
|
||||
public CharacterStats Stats { get; init; }
|
||||
public RecipeInfo Recipe { get; init; }
|
||||
public Random Random { get; init; }
|
||||
|
||||
public Condition[] AvailableConditions => ConditionUtils.GetPossibleConditions(Recipe.ConditionsFlag);
|
||||
}
|
||||
Reference in New Issue
Block a user