1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-14 15:57:24 +08:00

Apply NRT to ContractedPanelTopContent

This commit is contained in:
Bartłomiej Dach 2024-05-14 13:11:21 +02:00
parent 8e16b57d09
commit e7721b073c
No known key found for this signature in database

View File

@ -1,8 +1,6 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // 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. // See the LICENCE file in the repository root for full licence text.
#nullable disable
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Bindables; using osu.Framework.Bindables;
using osu.Framework.Graphics; using osu.Framework.Graphics;
@ -16,7 +14,7 @@ namespace osu.Game.Screens.Ranking.Contracted
{ {
public readonly Bindable<int?> ScorePosition = new Bindable<int?>(); public readonly Bindable<int?> ScorePosition = new Bindable<int?>();
private OsuSpriteText text; private OsuSpriteText text = null!;
public ContractedPanelTopContent() public ContractedPanelTopContent()
{ {