mirror of
https://github.com/ppy/osu.git
synced 2026-05-20 06:39:54 +08:00
a3b8b9aee9
I've seen this suggested quite a bit and is a pretty easy implementation all things considered. For now, while on the queue screen, you can open up the dashboard overlay and select another player to duel. This will bring you into an unranked lobby. https://github.com/user-attachments/assets/712897a9-9350-4741-899d-59662c722e43
20 lines
450 B
C#
20 lines
450 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 MatchmakingIssueDuelRequest
|
|
{
|
|
[Key(0)]
|
|
public int UserId { get; set; }
|
|
|
|
[Key(1)]
|
|
public int PoolId { get; set; }
|
|
}
|
|
}
|