2024-05-26 13:36:56 +08:00
|
|
|
using System.Collections.Generic;
|
2024-05-08 21:47:36 +08:00
|
|
|
using HarmonyLib;
|
2024-05-26 13:36:56 +08:00
|
|
|
using Process;
|
2024-05-26 13:21:03 +08:00
|
|
|
using Process.Information;
|
2024-05-08 21:47:36 +08:00
|
|
|
|
|
|
|
namespace AquaMai.UX
|
|
|
|
{
|
|
|
|
public class SkipEventInfo
|
|
|
|
{
|
|
|
|
[HarmonyPostfix]
|
2024-05-26 13:21:03 +08:00
|
|
|
[HarmonyPatch(typeof(InformationProcess), "OnStart")]
|
2024-05-26 13:36:56 +08:00
|
|
|
public static void InformationProcessPostStart(ref uint ____state)
|
2024-05-08 21:47:36 +08:00
|
|
|
{
|
2024-05-26 13:21:03 +08:00
|
|
|
____state = 3;
|
2024-05-08 21:47:36 +08:00
|
|
|
}
|
2024-05-26 13:36:56 +08:00
|
|
|
|
|
|
|
[HarmonyPostfix]
|
|
|
|
[HarmonyPatch(typeof(RegionalSelectProcess), "OnStart")]
|
|
|
|
public static void RegionalSelectProcessPreStart(ref Queue<int>[] ____discoverList)
|
|
|
|
{
|
|
|
|
____discoverList = new Queue<int>[] { new Queue<int>(), new Queue<int>() };
|
|
|
|
}
|
2024-05-08 21:47:36 +08:00
|
|
|
}
|
|
|
|
}
|