InventoryItemsCollection.cs 218 B

1234567
  1. using UnityEngine;
  2. [CreateAssetMenu(fileName = "InventoryItem", menuName = "ScriptableObjects/InventoryItemCollection", order = 2)]
  3. public class InventoryItemsCollection : ScriptableObject
  4. {
  5. public item[] items;
  6. }