Mark control point visualiser as possibly-null

This commit is contained in:
Bartłomiej Dach 2021-03-19 22:44:31 +01:00
parent 9634560d4b
commit e67c759eef
1 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using JetBrains.Annotations;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
@ -28,6 +29,8 @@ public class SliderSelectionBlueprint : OsuSelectionBlueprint<Slider>
protected SliderBodyPiece BodyPiece { get; private set; }
protected SliderCircleSelectionBlueprint HeadBlueprint { get; private set; }
protected SliderCircleSelectionBlueprint TailBlueprint { get; private set; }
[CanBeNull]
protected PathControlPointVisualiser ControlPointVisualiser { get; private set; }
private readonly DrawableSlider slider;