using System.Collections.Generic; namespace UnityEngine.Splines { /// /// Implement ISplineProvider on a MonoBehaviour to enable Spline tools in the Editor. /// public interface ISplineProvider { /// /// A collection of Splines contained on this MonoBehaviour. /// IEnumerable Splines { get; } } }