mirror of
https://github.com/ppy/osu.git
synced 2026-05-30 23:40:44 +08:00
8c6818e275
1. Gives `MatchmakingJoinLobby` parameters. 2. Adds additional data to lobby status update models. A further PR will build upon (2) to add more data to the queue screen.
15 lines
337 B
C#
15 lines
337 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System;
|
|
using MessagePack;
|
|
|
|
namespace osu.Game.Online.Matchmaking.Responses
|
|
{
|
|
[MessagePackObject]
|
|
[Serializable]
|
|
public class MatchmakingJoinLobbyResponse
|
|
{
|
|
}
|
|
}
|