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
+1
View File
@@ -20,6 +20,7 @@ public class Configuration : IPluginConfiguration
public int Version { get; set; } = 1;
public bool OverrideUncraftability { get; set; } = true;
public bool HideUnlearnedActions { get; set; } = true;
public List<Macro> Macros { get; set; } = new();
public string SimulatorType { get; set; } = typeof(Simulator.Simulator).AssemblyQualifiedName!;