1
0
forked from akanyan/mu3-mods

chore: spin off SkipLoginBonus

This commit is contained in:
2024-06-27 23:33:47 +09:00
parent c527320178
commit 3644cb7813
3 changed files with 27 additions and 15 deletions

View File

@ -0,0 +1,18 @@
#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 {
RankingReward = 2,
FadeOut = 8,
}
private void RankingReward_Init() {
_mode.set(State.FadeOut);
}
}