mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 10:52:53 +08:00
Cleanup property
This commit is contained in:
parent
f861d8099c
commit
513ad96adf
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user