添加了icon, 一键辅助

This commit is contained in:
waynebian01
2026-06-14 13:30:00 +08:00
parent 82333279a8
commit 37171a1e62
44 changed files with 400 additions and 267 deletions

View File

@@ -82,5 +82,15 @@ public sealed class KeymapService
var normalizedUnit = unit.GetValueOrDefault();
return _hotkeys.TryGetValue((normalizedUnit, spell), out var hotkey) ? hotkey : null;
}
public IReadOnlyDictionary<int, string> GetCurrentFailedSpells()
{
return _config.GetFailedSpells(_currentClassId);
}
public IReadOnlyDictionary<int, string> GetCurrentOneKeySpells()
{
return _config.GetOneKeySpells(_currentClassId);
}
}