mirror of https://github.com/ppy/osu
Remove useless field
This commit is contained in:
parent
74c9d5fc93
commit
c271d17557
|
@ -24,16 +24,10 @@ public class SliderBall : CircularContainer, ISliderProgress, IRequireHighFreque
|
|||
{
|
||||
public Func<OsuAction?> GetInitialHitAction;
|
||||
|
||||
private Color4 accentColour;
|
||||
|
||||
public Color4 AccentColour
|
||||
{
|
||||
get => accentColour;
|
||||
set
|
||||
{
|
||||
accentColour = value;
|
||||
ball.Colour = value;
|
||||
}
|
||||
get => ball.Colour;
|
||||
set => ball.Colour = value;
|
||||
}
|
||||
|
||||
private readonly Slider slider;
|
||||
|
|
Loading…
Reference in New Issue