chore: make context menu item list internal

This commit is contained in:
goaaats 2022-04-14 23:14:32 +02:00
parent 0d0496bee1
commit db147543a8
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -47,11 +47,6 @@ namespace Dalamud.Game.Gui.ContextMenus
/// </summary>
public string? Title { get; init; }
/// <summary>
/// Gets the items in the context menu.
/// </summary>
public List<ContextMenuItem> Items { get; }
/// <summary>
/// Gets the game object context associated with the context menu.
/// </summary>
@ -62,6 +57,11 @@ namespace Dalamud.Game.Gui.ContextMenus
/// </summary>
public InventoryItemContext? InventoryItemContext { get; init; }
/// <summary>
/// Gets the items in the context menu.
/// </summary>
internal List<ContextMenuItem> Items { get; }
/// <summary>
/// Append a custom context menu item to this context menu.
/// </summary>