1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:52:55 +08:00

Cleanup property

This commit is contained in:
smoogipoo 2019-11-01 15:15:13 +09:00
parent f861d8099c
commit 513ad96adf

View File

@ -268,21 +268,22 @@ namespace osu.Game.Rulesets.Osu.Tests
private class FollowPointGroup : CompositeDrawable private class FollowPointGroup : CompositeDrawable
{ {
// Todo: These shouldn't be constants
private const int spacing = 32; private const int spacing = 32;
private const double preempt = 800; private const double preempt = 800;
/// <summary>
/// The <see cref="DrawableHitObject"/> which <see cref="FollowPoint"/>s will exit from.
/// </summary>
[NotNull]
public readonly DrawableHitObject Start;
public FollowPointGroup(DrawableHitObject start) public FollowPointGroup(DrawableHitObject start)
{ {
Start = start; Start = start;
RelativeSizeAxes = Axes.Both; RelativeSizeAxes = Axes.Both;
} }
/// <summary>
/// The <see cref="DrawableHitObject"/> which <see cref="FollowPoint"/>s will exit from.
/// </summary>
[NotNull]
public DrawableHitObject Start { get; }
private DrawableHitObject end; private DrawableHitObject end;
/// <summary> /// <summary>