mirror of
https://github.com/kwsch/NHSE.git
synced 2026-07-14 23:31:13 -05:00
16 lines
346 B
C#
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;
|
|
}
|
|
}
|
|
} |