docs: add doc comment for context menu event

This commit is contained in:
Anna 2021-04-27 15:50:09 -04:00
parent be42559ccc
commit 7659a1c6c6
1 changed files with 8 additions and 0 deletions

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>