mu3-mods/SkipNotice/MU3/patch_Scene_30_NoticeReward.cs
akanyan a4104a67e7 feat: add infinite gp and skip premusic
Also, run the autoformatter.
Also, the skip is now cleaner.
2024-05-26 08:15:13 +09:00

30 lines
724 B
C#

#pragma warning disable CS0626
#pragma warning disable CS0649
#pragma warning disable IDE0051
#pragma warning disable IDE1006
using MU3.Util;
namespace MU3;
public class patch_Scene_30_NoticeReward: Scene_30_NoticeReward {
private Mode<Scene_30_NoticeReward, State> _mode;
private enum State {
Attention,
Notice,
RankingReward,
TechnicalChallengeReward,
DailyBonus,
AimeCollab,
Present,
TrainingRoom,
FadeOut,
End
}
private void Start() {
_mode = new Mode<Scene_30_NoticeReward, State>(this);
_mode.set(State.FadeOut);
SingletonMonoBehaviour<SystemUI>.instance.Panel.pushState(0, show: true);
}
}