Files

21 lines
611 B
C#
Raw Permalink Normal View History

2026-01-08 16:50:20 +00:00
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; }
}
}