public static bool IsKeyPressedWithModKey(this Keys key, Keys modKey, EKeyboardCheckMode checkMode = EKeyboardCheckMode.Check_Only_Ctrl_Shift_Alt)
 {
     return(GameFuncs.IsKeyCombinationPressed(key, modKey, checkMode));
 }