mirror of
https://github.com/soarqin/DSP_Mods_TO.git
synced 2025-12-11 17:03:27 +08:00
19 lines
501 B
C#
19 lines
501 B
C#
using CruiseAssist.Commons;
|
|
using HarmonyLib;
|
|
|
|
namespace CruiseAssist.Patches;
|
|
|
|
[HarmonyPatch(typeof(UIStarmap))]
|
|
internal class Patch_UIStarmap
|
|
{
|
|
[HarmonyPatch("_OnClose")]
|
|
[HarmonyPrefix]
|
|
public static void OnClose_Prefix()
|
|
{
|
|
ConfigManager.CheckConfig(ConfigManager.Step.State);
|
|
CruiseAssistPlugin.Extensions.ForEach(delegate(ICruiseAssistExtensionAPI extension)
|
|
{
|
|
extension.CheckConfig(ConfigManager.Step.State.ToString());
|
|
});
|
|
}
|
|
} |