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