using System;
namespace Unity.VisualScripting
{
///
/// Called when the user has pressed the mouse button while over the GUI element or collider.
///
[UnitCategory("Events/Input")]
public sealed class OnMouseDown : GameObjectEventUnit, IMouseEventUnit
{
protected override string hookName => EventHooks.OnMouseDown;
public override Type MessageListenerType => typeof(UnityOnMouseDownMessageListener);
}
}