mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
22 lines
717 B
C#
22 lines
717 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// 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
|
|
{
|
|
/// <summary>
|
|
/// Connects hit objects visually, for example with follow points.
|
|
/// </summary>
|
|
public abstract class ConnectionRenderer<T> : Container
|
|
where T : HitObject
|
|
{
|
|
/// <summary>
|
|
/// Hit objects to create connections for
|
|
/// </summary>
|
|
public abstract IEnumerable<T> HitObjects { get; set; }
|
|
}
|
|
}
|