e190368d62
- Split into several projects - All dalamud/lumina deps are in the plugin - Crafty/craftingway sim implemented! - optimizations to follow
12 lines
184 B
C#
12 lines
184 B
C#
namespace Craftimizer.Simulator;
|
|
|
|
public enum ActionResponse
|
|
{
|
|
SimulationComplete,
|
|
ActionNotUnlocked,
|
|
NotEnoughCP,
|
|
NoDurability,
|
|
CannotUseAction,
|
|
UsedAction,
|
|
}
|