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,26 @@
|
||||
namespace Craftimizer.Simulator;
|
||||
|
||||
public enum ActionCategory
|
||||
{
|
||||
FirstTurn,
|
||||
Synthesis,
|
||||
Quality,
|
||||
Durability,
|
||||
Buffs,
|
||||
Other
|
||||
}
|
||||
|
||||
public static class ActionCategoryUtils
|
||||
{
|
||||
public static string GetDisplayName(this ActionCategory category) =>
|
||||
category switch
|
||||
{
|
||||
ActionCategory.FirstTurn => "First Turn",
|
||||
ActionCategory.Synthesis => "Synthesis",
|
||||
ActionCategory.Quality => "Quality",
|
||||
ActionCategory.Durability => "Durability",
|
||||
ActionCategory.Buffs => "Buffs",
|
||||
ActionCategory.Other => "Other",
|
||||
_ => category.ToString()
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user