mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Fix CI issues + slight change
This commit is contained in:
@ -20,7 +20,10 @@ namespace osu.Game.Online.Leaderboards
|
||||
set => Model = value;
|
||||
}
|
||||
|
||||
public UpdateableRank(ScoreRank rank) => Rank = rank;
|
||||
public UpdateableRank(ScoreRank rank)
|
||||
{
|
||||
Rank = rank;
|
||||
}
|
||||
|
||||
protected override Drawable CreateDrawable(ScoreRank rank) => new DrawableRank(rank)
|
||||
{
|
||||
@ -33,9 +36,12 @@ namespace osu.Game.Online.Leaderboards
|
||||
|
||||
public class DrawableRank : Sprite
|
||||
{
|
||||
private ScoreRank rank;
|
||||
private readonly ScoreRank rank;
|
||||
|
||||
public DrawableRank(ScoreRank rank) => this.rank = rank;
|
||||
public DrawableRank(ScoreRank rank)
|
||||
{
|
||||
this.rank = rank;
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader(true)]
|
||||
private void load(TextureStore ts)
|
||||
|
Reference in New Issue
Block a user