From 8fb68789a13b185e2bfa818c71fffc4ab8121c7d Mon Sep 17 00:00:00 2001
From: r00telement <47005506+r00telement@users.noreply.github.com>
Date: Mon, 10 Jan 2022 03:35:07 +0000
Subject: [PATCH] More doc fixes
---
.../GameInterface/ContextMenus/ContextMenuOpenedArgs.cs | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/PlayerTags/GameInterface/ContextMenus/ContextMenuOpenedArgs.cs b/PlayerTags/GameInterface/ContextMenus/ContextMenuOpenedArgs.cs
index b182212..59761a3 100644
--- a/PlayerTags/GameInterface/ContextMenus/ContextMenuOpenedArgs.cs
+++ b/PlayerTags/GameInterface/ContextMenus/ContextMenuOpenedArgs.cs
@@ -39,6 +39,13 @@ namespace PlayerTags.GameInterface.ContextMenus
///
public ItemContext? ItemContext { get; init; }
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The addon associated with the context menu.
+ /// The agent associated with the context menu.
+ /// The the name of the parent addon associated with the context menu.
+ /// The items in the context menu.
public ContextMenuOpenedArgs(IntPtr addon, IntPtr agent, string? parentAddonName, IEnumerable contextMenuItems)
{
Addon = addon;