using Dalamud.Game.Text.SeStringHandling; namespace XivCommon.Functions.ContextMenu { /// /// A custom context menu item that will open a submenu /// public class NormalContextSubMenuItem : CustomContextMenuItem { /// /// Create a new custom context menu item that will open a submenu. /// /// the English name of the item, copied to other languages /// the action to perform on click public NormalContextSubMenuItem(SeString name, ContextMenu.ContextMenuOpenEventDelegate action) : base(name, action) { this.IsSubMenu = true; } } }