Inventory.cs 172 B

1234567
  1. using UnityEngine;
  2. using System.Collections.Generic;
  3. public class Inventory : MonoBehaviour
  4. {
  5. public List<InventoryItem> items = new List<InventoryItem>(16);
  6. }