using UnityEngine; using System.Collections.Generic; public class Inventory : MonoBehaviour { public List<InventoryItem> items = new List<InventoryItem>(16); }