2021-03-23 05:47:15 +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.
|
|
|
|
|
2021-03-23 06:35:06 +00:00
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osu.Game.Online.Rooms;
|
|
|
|
using osu.Game.Scoring;
|
|
|
|
|
2021-03-23 05:47:15 +00:00
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
{
|
2021-03-23 06:35:06 +00:00
|
|
|
public class SoloPlayer : SubmittingPlayer
|
2021-03-23 05:47:15 +00:00
|
|
|
{
|
2021-03-23 06:35:06 +00:00
|
|
|
public override APIRequest<MultiplayerScore> CreateSubmissionRequest(Score score, int token)
|
|
|
|
{
|
|
|
|
throw new System.NotImplementedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override APIRequest<APIScoreToken> CreateTokenRequestRequest()
|
|
|
|
{
|
|
|
|
throw new System.NotImplementedException();
|
|
|
|
}
|
2021-03-23 05:47:15 +00:00
|
|
|
}
|
|
|
|
}
|