mu3-mods/Pause/MU3.Battle/patch_GameEngine.cs

11 lines
217 B
C#
Raw Normal View History

using MU3.Sequence;
namespace MU3.Battle;
2024-07-04 12:39:11 +00:00
class patch_GameEngine: GameEngine {
public extern void orig_reset();
public new void reset() {
orig_reset();
patch_PlayMusic.Paused = false;
}
}