e190368d62
- Split into several projects - All dalamud/lumina deps are in the plugin - Crafty/craftingway sim implemented! - optimizations to follow
12 lines
316 B
C#
12 lines
316 B
C#
namespace Craftimizer.Simulator.Actions;
|
|
|
|
internal class Observe : BaseAction
|
|
{
|
|
public override ActionCategory Category => ActionCategory.Other;
|
|
public override int Level => 13;
|
|
public override uint ActionId => 100010;
|
|
|
|
public override int CPCost => 7;
|
|
public override int DurabilityCost => 0;
|
|
}
|