RoboticArms/Library/PackageCache/com.unity.splines@d3e1e500c9a0/Runtime/ISplineContainer.cs
2025-11-17 15:16:36 +07:00

21 lines
611 B
C#

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; }
}
}