Big UI changes, drag and drop works

todo:
- action history doesnt wrap
- macro saving + suggestion/solving
- show macros in craftinglog window (still untested)
This commit is contained in:
Asriel Camora
2023-06-27 02:54:34 -07:00
parent ef12bf8351
commit 98dae0c2c5
6 changed files with 301 additions and 109 deletions
+2 -2
View File
@@ -40,14 +40,14 @@ public sealed class Plugin : IDalamudPlugin
Service.PluginInterface.UiBuilder.OpenConfigUi += () => SettingsWindow.IsOpen = true;
}
public void OpenSimulatorWindow(Item item, SimulationInput input, ClassJob classJob, List<ActionType> actions)
public void OpenSimulatorWindow(Item item, bool isExpert, SimulationInput input, ClassJob classJob, List<ActionType> actions)
{
if (SimulatorWindow != null)
{
SimulatorWindow.IsOpen = false;
WindowSystem.RemoveWindow(SimulatorWindow);
}
SimulatorWindow = new(item, input, classJob, actions);
SimulatorWindow = new(item, isExpert, input, classJob, actions);
}
public void Dispose()