WuhuIslandTesting/Library/PackageCache/com.unity.splines@1.0.1/Runtime/ISplineProvider.cs

16 lines
405 B
C#
Raw Normal View History

2025-01-07 02:06:59 +01:00
using System.Collections.Generic;
namespace UnityEngine.Splines
{
/// <summary>
/// Implement ISplineProvider on a MonoBehaviour to enable Spline tools in the Editor.
/// </summary>
public interface ISplineProvider
{
/// <summary>
/// A collection of Splines contained on this MonoBehaviour.
/// </summary>
IEnumerable<Spline> Splines { get; }
}
}