Dalamud/Dalamud/Game/Gui/ContextMenus/ContextMenuOpenedDelegate.cs
2022-01-28 23:15:48 +01:00

8 lines
364 B
C#

namespace Dalamud.Game.Gui.ContextMenus
{
/// <summary>
/// Represents the method the <see cref="ContextMenu.ContextMenuOpened"/> event.
/// </summary>
/// <param name="args">The data associated with the <see cref="ContextMenu.ContextMenuOpened"/> event.</param>
public delegate void ContextMenuOpenedDelegate(ContextMenuOpenedArgs args);
}