上传文件至 Common

This commit is contained in:
2025-10-13 18:18:47 +08:00
parent 535e955faf
commit 566c6190ff
25 changed files with 1487 additions and 0 deletions

14
Common/ForceQuickRetry.cs Normal file
View File

@@ -0,0 +1,14 @@
using HarmonyLib;
using Monitor;
namespace SinmaiAssist.Common;
public class ForceQuickRetry
{
[HarmonyPostfix]
[HarmonyPatch(typeof(QuickRetry), "IsQuickRetryEnable")]
public static void IsQuickRetryEnable(ref bool __result)
{
__result = true;
}
}