1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00

Move ReplayDownloadButton to correct namespace

This commit is contained in:
Dean Herbert 2019-11-01 15:06:36 +09:00
parent 7c3dd36add
commit 14fec6f1f3
3 changed files with 6 additions and 5 deletions

View File

@ -7,11 +7,11 @@ using osu.Game.Online;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Rulesets.Osu;
using osu.Game.Scoring;
using osu.Game.Screens.Play;
using osu.Game.Users;
using osuTK;
using System;
using System.Collections.Generic;
using osu.Game.Screens.Ranking.Pages;
namespace osu.Game.Tests.Visual.Gameplay
{

View File

@ -26,6 +26,7 @@ namespace osu.Game.Tests.Visual.Gameplay
typeof(Results),
typeof(ResultsPage),
typeof(ScoreResultsPage),
typeof(ReplayDownloadButton),
typeof(LocalLeaderboardPage)
};

View File

@ -4,12 +4,12 @@
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Online;
using osu.Game.Scoring;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Scoring;
namespace osu.Game.Screens.Play
namespace osu.Game.Screens.Ranking.Pages
{
public class ReplayDownloadButton : DownloadTrackingComposite<ScoreInfo, ScoreManager>
{