7 lines
218 B
C#
7 lines
218 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "InventoryItem", menuName = "ScriptableObjects/InventoryItemCollection", order = 2)]
|
|
public class InventoryItemsCollection : ScriptableObject
|
|
{
|
|
public item[] items;
|
|
} |