mirror of
https://github.com/waynebian01/Shigure.git
synced 2026-09-03 07:15:24 +08:00
25 lines
702 B
C#
25 lines
702 B
C#
namespace Shigure;
|
|
|
|
public interface IKeymapResolver
|
|
{
|
|
void SelectForClass(int? classId, int? specId);
|
|
|
|
string? GetHotkey(int? unit, string spell, string? macroCondition = null);
|
|
|
|
string? GetHotkey(int? unit, long spellId, string? macroCondition = null);
|
|
|
|
IReadOnlyDictionary<int, long> GetCurrentFailedSpells();
|
|
|
|
IReadOnlyDictionary<int, long> GetCurrentOneKeySpells();
|
|
|
|
IReadOnlyDictionary<int, long> GetCurrentInsertItems();
|
|
|
|
IReadOnlyDictionary<long, int> GetCurrentSpellIndices();
|
|
|
|
IReadOnlyDictionary<long, string> GetCurrentSpellNames();
|
|
|
|
IReadOnlyDictionary<long, int> GetCurrentItemIndices();
|
|
|
|
IReadOnlyDictionary<long, string> GetCurrentItemNames();
|
|
}
|