forked from akanyan/mu3-mods
chore: name correction
This commit is contained in:
18
SkipLoginReward/MU3/patch_Scene_30_NoticeReward.cs
Normal file
18
SkipLoginReward/MU3/patch_Scene_30_NoticeReward.cs
Normal 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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user