mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-15 00:27:26 +08:00
[+] Unlock Utage
This commit is contained in:
18
AquaMai/Cheat/UnlockUtage.cs
Normal file
18
AquaMai/Cheat/UnlockUtage.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using HarmonyLib;
|
||||
using MAI2System;
|
||||
using Manager;
|
||||
|
||||
namespace AquaMai.Cheat
|
||||
{
|
||||
public class UnlockUtage
|
||||
{
|
||||
[HarmonyPrefix]
|
||||
[HarmonyPatch(typeof(GameManager), "CanUnlockUtageTotalJudgement")]
|
||||
public static bool CanUnlockUtageTotalJudgement(out ConstParameter.ResultOfUnlockUtageJudgement result1P, out ConstParameter.ResultOfUnlockUtageJudgement result2P)
|
||||
{
|
||||
result1P = ConstParameter.ResultOfUnlockUtageJudgement.Unlocked;
|
||||
result2P = ConstParameter.ResultOfUnlockUtageJudgement.Unlocked;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user