21 lines
611 B
C#
21 lines
611 B
C#
using System.Collections.Generic;
|
|
|
|
namespace UnityEngine.Splines
|
|
{
|
|
/// <summary>
|
|
/// An interface that represents ISplineContainer on a MonoBehaviour to enable Spline tools in the Editor.
|
|
/// </summary>
|
|
public interface ISplineContainer
|
|
{
|
|
/// <summary>
|
|
/// A collection of splines contained in this MonoBehaviour.
|
|
/// </summary>
|
|
IReadOnlyList<Spline> Splines { get; set; }
|
|
|
|
/// <summary>
|
|
/// A collection of KnotLinks to maintain valid links between knots.
|
|
/// </summary>
|
|
KnotLinkCollection KnotLinkCollection { get; }
|
|
}
|
|
}
|