2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Connects hit objects visually, for example with follow points.
|
|
|
|
|
/// </summary>
|
2018-12-13 13:55:28 +08:00
|
|
|
|
public abstract class ConnectionRenderer<T> : LifetimeManagementContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
where T : HitObject
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Hit objects to create connections for
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract IEnumerable<T> HitObjects { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|