mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
21 lines
501 B
C#
21 lines
501 B
C#
namespace Dalamud.Game.Gui.ContextMenus
|
|
{
|
|
/// <summary>
|
|
/// An indicator displayed on a context menu item.
|
|
/// </summary>
|
|
public enum ContextMenuItemIndicator
|
|
{
|
|
/// <summary>
|
|
/// The item has no indicator.
|
|
/// </summary>
|
|
None,
|
|
/// <summary>
|
|
/// The item has a previous indicator.
|
|
/// </summary>
|
|
Previous,
|
|
/// <summary>
|
|
/// The item has a next indicator.
|
|
/// </summary>
|
|
Next
|
|
}
|
|
}
|