mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
chore: make context menu item list internal
This commit is contained in:
parent
0d0496bee1
commit
db147543a8
1 changed files with 5 additions and 5 deletions
|
|
@ -47,11 +47,6 @@ namespace Dalamud.Game.Gui.ContextMenus
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? Title { get; init; }
|
public string? Title { get; init; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the items in the context menu.
|
|
||||||
/// </summary>
|
|
||||||
public List<ContextMenuItem> Items { get; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the game object context associated with the context menu.
|
/// Gets the game object context associated with the context menu.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -62,6 +57,11 @@ namespace Dalamud.Game.Gui.ContextMenus
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public InventoryItemContext? InventoryItemContext { get; init; }
|
public InventoryItemContext? InventoryItemContext { get; init; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the items in the context menu.
|
||||||
|
/// </summary>
|
||||||
|
internal List<ContextMenuItem> Items { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Append a custom context menu item to this context menu.
|
/// Append a custom context menu item to this context menu.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue