// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics.Containers; using osu.Game.Rulesets.Objects; using System.Collections.Generic; namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections { /// /// Connects hit objects visually, for example with follow points. /// public abstract class ConnectionRenderer : LifetimeManagementContainer where T : HitObject { /// /// Hit objects to create connections for /// public abstract IEnumerable HitObjects { get; set; } } }