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