mirror of
https://github.com/ppy/osu.git
synced 2026-05-21 10:50:20 +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.
20 lines
490 B
C#
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; }
|
|
}
|
|
}
|