mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
8 lines
364 B
C#
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);
|
|
}
|