1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 10:50:20 +08:00
Files
osu-lazer/osu.Game/Online/Matchmaking/Requests/MatchmakingJoinLobbyRequest.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

20 lines
490 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.Requests
{
[MessagePackObject]
[Serializable]
public class MatchmakingJoinLobbyRequest
{
/// <summary>
/// The pool to receive status updates from.
/// </summary>
[Key(0)]
public int PoolId { get; set; }
}
}