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

correct type of field stageHint

This commit is contained in:
mcendu 2019-12-28 14:05:46 +08:00
parent bf162f148e
commit 5d2b5cc950

View File

@ -22,7 +22,7 @@ namespace osu.Game.Rulesets.Mania.UI.Components
private readonly IBindable<ScrollingDirection> direction = new Bindable<ScrollingDirection>();
private readonly Drawable stageHint;
private readonly StageHint stageHint;
public ColumnHitObjectArea(HitObjectContainer hitObjectContainer)
{
@ -59,6 +59,8 @@ namespace osu.Game.Rulesets.Mania.UI.Components
return;
accentColour = value;
stageHint.AccentColour = accentColour;
}
}