docs: add doc comment for context menu event

This commit is contained in:
Anna 2021-04-27 15:50:09 -04:00
parent 085794837f
commit d1a598c93c
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0

View File

@ -50,6 +50,14 @@ namespace XivCommon.Functions {
/// </summary>
public delegate void ContextMenuEventDelegate(ContextMenuArgs args);
/// <summary>
/// <para>
/// The event that is fired when a context menu is being prepared for opening.
/// </para>
/// <para>
/// Requires the <see cref="Hooks.ContextMenu"/> hook to be enabled.
/// </para>
/// </summary>
public event ContextMenuEventDelegate? OpenContextMenu;
/// <summary>