Files
RAGECOOP-V/RageCoop.Client/LemonUI/Menus/MenuModifiedEventHandler.cs
2022-06-27 13:02:31 +08:00

10 lines
419 B
C#

namespace LemonUI.Menus
{
/// <summary>
/// Represents the method that is called when the items on a menu are changed (added or removed).
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">An <see cref="MenuModifiedEventArgs"/> with the menu operation.</param>
public delegate void MenuModifiedEventHandler(object sender, MenuModifiedEventArgs e);
}