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:
Asriel Camora
2023-06-17 08:50:46 -07:00
parent 15d416ef2a
commit e190368d62
76 changed files with 1284 additions and 435 deletions
+26
View File
@@ -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()
};
}