mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 16:52:54 +08:00
Add missing union specification for MatchUserRequest
This commit is contained in:
parent
f95c6f0de5
commit
2b5a42e063
@ -3,6 +3,7 @@
|
||||
|
||||
using System;
|
||||
using MessagePack;
|
||||
using osu.Game.Online.Multiplayer.MatchTypes.TeamVersus;
|
||||
|
||||
namespace osu.Game.Online.Multiplayer
|
||||
{
|
||||
@ -11,6 +12,7 @@ namespace osu.Game.Online.Multiplayer
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
[MessagePackObject]
|
||||
[Union(0, typeof(ChangeTeamRequest))] // IMPORTANT: Add rules to SignalRUnionWorkaroundResolver for new derived types.
|
||||
public abstract class MatchUserRequest
|
||||
{
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user