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

@ -11,7 +11,7 @@
/// <param name="id">The id of the item.</param>
/// <param name="count">The count of the item in the stack.</param>
/// <param name="isHighQuality">Whether the item is high quality.</param>
public InventoryItemContext(uint id, uint count, bool isHighQuality)
internal InventoryItemContext(uint id, uint count, bool isHighQuality)
{
this.Id = id;
this.Count = count;