2022-12-12 18:56:43 +09: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 System.Collections.Generic;
|
2025-02-25 21:54:13 +09:00
|
|
|
using System.Threading.Tasks;
|
2022-12-12 18:56:43 +09:00
|
|
|
using osu.Game.Scoring;
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
|
|
|
|
{
|
|
|
|
public partial class MultiSpectatorResultsScreen : SpectatorResultsScreen
|
|
|
|
{
|
|
|
|
public MultiSpectatorResultsScreen(ScoreInfo score)
|
|
|
|
: base(score)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-08-01 19:00:01 +09:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
Scheduler.AddDelayed(() => StatisticsPanel.ToggleVisibility(), 1000);
|
|
|
|
}
|
|
|
|
|
2025-02-25 21:54:13 +09:00
|
|
|
protected override Task<IEnumerable<ScoreInfo>> FetchScores() => Task.FromResult<IEnumerable<ScoreInfo>>([]);
|
2022-12-12 18:56:43 +09:00
|
|
|
|
2025-02-25 21:54:13 +09:00
|
|
|
protected override Task<IEnumerable<ScoreInfo>> FetchNextPage(int direction) => Task.FromResult<IEnumerable<ScoreInfo>>([]);
|
2022-12-12 18:56:43 +09:00
|
|
|
}
|
|
|
|
}
|