using System;
namespace Unity.VisualScripting
{
///
/// Called when the user has released the mouse button.
///
[UnitCategory("Events/Input")]
public sealed class OnMouseUp : GameObjectEventUnit, IMouseEventUnit
{
public override Type MessageListenerType => typeof(UnityOnMouseUpMessageListener);
protected override string hookName => EventHooks.OnMouseUp;
}
}