namespace Unity.VisualScripting
{
///
/// Called when the machine becomes enabled and active.
///
[UnitCategory("Events/Lifecycle")]
[UnitOrder(1)]
public sealed class OnEnable : MachineEventUnit
{
protected override string hookName => EventHooks.OnEnable;
}
}