mmorpg2d/Assets/Script/Inventory/InventoryItemsCollection.cs
2024-08-26 22:41:07 +05:30

7 lines
218 B
C#

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