PredictableAttribute.cs
using System;
namespace Unity.VisualScripting
{
[AttributeUsage(AttributeTargets.All, AllowMultiple = false, Inherited = true)]
public sealed class PredictableAttribute : Attribute
{
public PredictableAttribute() { }
}
}