1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 23:40:44 +08:00
Files
osu-lazer/osu.Game/Online/Matchmaking/Responses/MatchmakingJoinLobbyResponse.cs
T
Dan Balasescu 8c6818e275 Add models for improvements to matchmaking lobby (#37226)
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.
2026-04-08 18:43:51 +09:00

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
{
}
}