1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 06:39:54 +08:00
Files
osu-lazer/osu.Game/Online/Matchmaking/Requests/MatchmakingIssueDuelRequest.cs
T
Dan Balasescu a3b8b9aee9 Implement duels for ranked play (#37556)
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
2026-04-29 16:12:27 +09:00

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