NHSE/NHSE.Core/Structures/Item/InventorySet.cs
2020-03-27 17:54:17 -07:00

16 lines
346 B
C#

using System.Collections.Generic;
namespace NHSE.Core
{
public class InventorySet
{
public readonly InventoryType Type;
public readonly IReadOnlyList<Item> Items;
public InventorySet(InventoryType type, IReadOnlyList<Item> items)
{
Type = type;
Items = items;
}
}
}