Rename start countdown request

This commit is contained in:
Dan Balasescu
2022-03-18 21:05:19 +09:00
parent 72843a6797
commit 04f4e81852
6 changed files with 7 additions and 7 deletions

View File

@ -12,7 +12,7 @@ namespace osu.Game.Online.Multiplayer.Countdown
/// A request for a countdown to start the match.
/// </summary>
[MessagePackObject]
public class MatchStartCountdownRequest : MatchUserRequest
public class StartMatchCountdownRequest : MatchUserRequest
{
/// <summary>
/// How long the countdown should last.

View File

@ -15,7 +15,7 @@ namespace osu.Game.Online.Multiplayer
[MessagePackObject]
// IMPORTANT: Add rules to SignalRUnionWorkaroundResolver for new derived types.
[Union(0, typeof(ChangeTeamRequest))]
[Union(1, typeof(MatchStartCountdownRequest))]
[Union(1, typeof(StartMatchCountdownRequest))]
[Union(2, typeof(StopCountdownRequest))]
public abstract class MatchUserRequest
{