1
0
forked from akanyan/mu3-mods

feat: implement Pause, better InfiniteGP

This commit is contained in:
2024-07-02 10:34:51 +09:00
parent a31cf82029
commit cc6f7657c7
12 changed files with 181 additions and 14 deletions

View File

@ -0,0 +1,15 @@
#pragma warning disable CS0649
using MU3.Sound;
using MU3.Util;
namespace MU3.Game;
public class patch_GameBGM: GameBGM {
private patch_SoundManager psm => ((patch_SoundManager)Singleton<SoundManager>.instance);
private HandleInfo _handle;
public void pause(bool val) {
psm.pause(_handle, val);
}
}