1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 21:42:55 +08:00

remove measly abstract

This commit is contained in:
nanashi-1 2023-08-07 09:50:24 +08:00
parent 92bf363ecf
commit f3f7d1ba7c
2 changed files with 5 additions and 16 deletions

View File

@ -3,19 +3,22 @@
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Online.Leaderboards;
using osu.Game.Rulesets.Scoring;
using osu.Game.Skinning;
using osuTK;
namespace osu.Game.Screens.Play.HUD
{
public partial class DefaultRankDisplay : GameplayRankDisplay
public partial class DefaultRankDisplay : Container, ISerialisableDrawable
{
[Resolved]
private ScoreProcessor scoreProcessor { get; set; } = null!;
public bool UsesFixedAnchor { get; set; }
private UpdateableRank rank;
private readonly UpdateableRank rank;
public DefaultRankDisplay()
{

View File

@ -1,14 +0,0 @@
// 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.Skinning;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Screens.Play.HUD
{
public abstract partial class GameplayRankDisplay : Container, ISerialisableDrawable
{
public bool UsesFixedAnchor { get; set; }
}
}