1
0
forked from akanyan/mu3-mods

fix(SelectBGM): scoreboard bgm

This commit is contained in:
2025-01-04 02:36:33 +00:00
parent 1f01b460ba
commit 3b75874ef3
5 changed files with 40 additions and 12 deletions

View File

@ -0,0 +1,8 @@
using MU3.Util;
namespace MU3.Mod;
class State: Singleton<State> {
public int RecentBGM { get; set; } = 6;
public bool WithholdPlay { get; set; } = false;
}