mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-08-05 10:10:12 +08:00
16 lines
387 B
C#
16 lines
387 B
C#
using HarmonyLib;
|
|
using UXAssist.Common.ModCompat;
|
|
|
|
namespace UXAssist.ModsCompat;
|
|
|
|
public static class BulletTimeWrapper
|
|
{
|
|
private const string BulletTimeGuid = "com.starfi5h.plugin.BulletTime";
|
|
public static bool HasBulletTime;
|
|
|
|
public static void Start(Harmony _)
|
|
{
|
|
HasBulletTime = ModCompatHelper.TryGetLoadedPluginInfo(BulletTimeGuid, out var _);
|
|
}
|
|
}
|