11 lines
220 B
C#
11 lines
220 B
C#
using DDD.Items;
|
|
using UnityEngine;
|
|
|
|
namespace DDD.ScriptableObjects
|
|
{
|
|
[CreateAssetMenu(fileName = "ItemTable", menuName = "ScriptableObjects/ItemTable")]
|
|
public class ItemDataSo : DataSo<ItemData>
|
|
{
|
|
|
|
}
|
|
} |