mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 19:52:55 +08:00
Rename request
This commit is contained in:
parent
ed74c39b55
commit
d1ceb81797
@ -1,17 +1,15 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// 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.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using osu.Game.Online.API;
|
using osu.Game.Online.API;
|
||||||
using osu.Game.Online.API.Requests.Responses;
|
|
||||||
|
|
||||||
namespace osu.Game.Online.Multiplayer
|
namespace osu.Game.Online.Multiplayer
|
||||||
{
|
{
|
||||||
public class GetRoomScoresRequest : APIRequest<List<APIUserScoreAggregate>>
|
public class GetRoomLeaderboardRequest : APIRequest<APILeaderboard>
|
||||||
{
|
{
|
||||||
private readonly int roomId;
|
private readonly int roomId;
|
||||||
|
|
||||||
public GetRoomScoresRequest(int roomId)
|
public GetRoomLeaderboardRequest(int roomId)
|
||||||
{
|
{
|
||||||
this.roomId = roomId;
|
this.roomId = roomId;
|
||||||
}
|
}
|
@ -39,7 +39,7 @@ namespace osu.Game.Screens.Multi.Match.Components
|
|||||||
if (roomId.Value == null)
|
if (roomId.Value == null)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
var req = new GetRoomScoresRequest(roomId.Value ?? 0);
|
var req = new GetRoomLeaderboardRequest(roomId.Value ?? 0);
|
||||||
|
|
||||||
req.Success += r =>
|
req.Success += r =>
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user