forked from akanyan/mu3-mods
9 lines
170 B
C#
9 lines
170 B
C#
using MU3.Util;
|
|
|
|
namespace MU3.Mod;
|
|
|
|
class State: Singleton<State> {
|
|
public int RecentBGM { get; set; } = 6;
|
|
public bool WithholdPlay { get; set; } = false;
|
|
}
|