CapersProject/Assets/02.Scripts/DDD/ScriptableObject/Class/ItemDataSo.cs

11 lines
220 B
C#
Raw Normal View History

2025-02-10 02:13:46 +00:00
using DDD.Items;
2024-06-03 18:26:03 +00:00
using UnityEngine;
2025-02-03 10:03:41 +00:00
namespace DDD.ScriptableObjects
2024-06-03 18:26:03 +00:00
{
[CreateAssetMenu(fileName = "ItemTable", menuName = "ScriptableObjects/ItemTable")]
public class ItemDataSo : DataSo<ItemData>
2024-06-03 18:26:03 +00:00
{
}
}