public void NoteKey(string noteKey)
 {
     if (hotkeys.GetKeybindFromNoteKey(noteKey) is FFXIVKeybindDat.Keybind keybind)
     {
         hook.SendAsyncKeybind(keybind);
     }
 }
Пример #2
0
 public void PlayPerformanceNote(string noteKey)
 {
     if (IsPerformanceReady())
     {
         if (hotkeys.GetKeybindFromNoteKey(noteKey) is FFXIVKeybindDat.Keybind keybind)
         {
             hook.SendAsyncKeybind(keybind);
         }
     }
 }