using System; using System.Collections.Generic; namespace UnityEngine.Splines { /// /// Implement ISplineProvider on a MonoBehaviour to enable Spline tools in the Editor. /// [Obsolete("Use " + nameof(ISplineContainer) + " instead.")] public interface ISplineProvider { /// /// A collection of Splines contained on this MonoBehaviour. /// IEnumerable Splines { get; } } }