refactor: phase 5 transpiler docs, mod-compat helpers, and build quality gates

This commit is contained in:
2026-06-23 23:03:13 +08:00
parent cca8b8594d
commit c2016909ff
43 changed files with 2327 additions and 135 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
using BepInEx.Bootstrap;
using HarmonyLib;
using HarmonyLib;
using UXAssist.Common.ModCompat;
namespace UXAssist.ModsCompat;
@@ -10,6 +10,6 @@ public static class BulletTimeWrapper
public static void Start(Harmony _)
{
HasBulletTime = Chainloader.PluginInfos.TryGetValue(BulletTimeGuid, out var _);
HasBulletTime = ModCompatHelper.TryGetLoadedPluginInfo(BulletTimeGuid, out var _);
}
}