using System; using UnityEngine; namespace UnityEngine.Splines { /// /// SplineDataHandleAttribute can be use to add custom handles to . /// The custom drawer class must inherit from SplineDataHandle and override one of the Draw static method. /// [AttributeUsage(AttributeTargets.Field)] public abstract class SplineDataHandleAttribute : Attribute {} }