1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-24 17:40:37 +08:00

Add missing union specification for MatchUserRequest

This commit is contained in:
Dean Herbert
2021-08-19 17:42:26 +09:00
Unverified
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
{
}