// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE 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 : Container where T : HitObject { /// /// Hit objects to create connections for /// public abstract IEnumerable HitObjects { get; set; } } }