Rasagar/Library/PackageCache/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/ManualEventUnit.cs

15 lines
352 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
namespace Unity.VisualScripting
{
public abstract class ManualEventUnit<TArgs> : EventUnit<TArgs>
{
protected sealed override bool register => false;
protected abstract string hookName { get; }
public sealed override EventHook GetHook(GraphReference reference)
{
return hookName;
}
}
}