osu/osu.Game/Online/Solo/SubmitSoloScoreRequest.cs

22 lines
633 B
C#
Raw Normal View History

2021-03-23 05:44:06 +00:00
// 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 osu.Game.Online.Rooms;
using osu.Game.Scoring;
namespace osu.Game.Online.Solo
{
public class SubmitSoloScoreRequest : SubmitScoreRequest
2021-03-23 05:44:06 +00:00
{
private readonly int beatmapId;
public SubmitSoloScoreRequest(ScoreInfo scoreInfo, long scoreId, int beatmapId)
: base(scoreInfo, scoreId)
2021-03-23 05:44:06 +00:00
{
this.beatmapId = beatmapId;
}
protected override string Target => $@"beatmaps/{beatmapId}/solo/scores/{ScoreId}";
2021-03-23 05:44:06 +00:00
}
}