1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:47:29 +08:00

Update naming of enum fields in StartMode

This commit is contained in:
Salman Ahmed 2024-05-01 17:22:42 +03:00
parent 97fc2a5473
commit 16bae4f004

View File

@ -486,16 +486,16 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
Off = 0,
[Description("30 seconds")]
Seconds_30 = 30,
Seconds30 = 30,
[Description("1 minute")]
Seconds_60 = 60,
Seconds60 = 60,
[Description("3 minutes")]
Seconds_180 = 180,
Seconds180 = 180,
[Description("5 minutes")]
Seconds_300 = 300
Seconds300 = 300
}
}
}