mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 06:52:55 +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
|
||||
{
|
||||
// Todo: These shouldn't be constants
|
||||
private const int spacing = 32;
|
||||
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)
|
||||
{
|
||||
Start = start;
|
||||
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;
|
||||
|
||||
/// <summary>
|
||||
|
Loading…
Reference in New Issue
Block a user