fix(ContextMenu): ctor visibility

This commit is contained in:
goaaats 2022-01-29 15:35:39 +01:00
parent a3686d9c93
commit 6131c3efa1
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
7 changed files with 8 additions and 7 deletions

View file

@ -14,7 +14,7 @@ namespace Dalamud.Game.Gui.ContextMenus
/// <param name="contentId">The lower content id of the game object.</param>
/// <param name="name">The name of the game object.</param>
/// <param name="worldId">The world id of the game object.</param>
public GameObjectContext(uint? id, ulong? contentId, string? name, ushort? worldId)
internal GameObjectContext(uint? id, ulong? contentId, string? name, ushort? worldId)
{
this.Id = id;
this.ContentId = contentId;