forked from BilalY/Rasagar
15 lines
352 B
C#
15 lines
352 B
C#
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;
|
|
}
|
|
}
|
|
}
|