mmorpg/Assets/Script/Inventory/InventoryItemsCollection.cs
2024-08-23 16:17:24 +05:30

7 lines
218 B
C#
Executable File

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