1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 09:42:57 +08:00

Fix namespace for CarouselBeatmapRank, make UpdateableRank in TopLocalRank readonly

This commit is contained in:
Santeri Nogelainen 2020-03-28 18:13:39 +02:00
parent 1c711147f3
commit faa2b49be4
3 changed files with 3 additions and 3 deletions

View File

@ -17,11 +17,11 @@ namespace osu.Game.Online.Leaderboards
public class TopLocalRank : Container
{
private readonly BeatmapInfo beatmap;
private readonly UpdateableRank rank;
private ScoreManager scores;
private IBindable<RulesetInfo> ruleset;
private IAPIProvider api;
private UpdateableRank rank;
/// <summary>
/// Raised when the top score is loaded

View File

@ -6,10 +6,11 @@ using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Online.Leaderboards;
using osu.Game.Rulesets;
using osu.Game.Scoring;
namespace osu.Game.Online.Leaderboards
namespace osu.Game.Screens.Select.Carousel
{
public class CarouselBeatmapRank : Container
{

View File

@ -19,7 +19,6 @@ using osu.Game.Graphics;
using osu.Game.Graphics.Backgrounds;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.Leaderboards;
using osu.Game.Overlays;
using osuTK;
using osuTK.Graphics;