[+] Skip track start screen

This commit is contained in:
Clansty
2024-09-27 19:33:37 +08:00
parent 9605264b9a
commit a2db465825
5 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using HarmonyLib;
using Monitor;
namespace AquaMai.TimeSaving;
public class SkipTrackStart
{
[HarmonyPrefix]
[HarmonyPatch(typeof (TrackStartMonitor), "IsEnd")]
public static bool IsEnd(ref bool __result)
{
__result = true;
return false;
}
}