CapersProject/Assets/02.Scripts/DDD/ScriptableObject/Class/CraftRecipeDataSo.cs
2025-02-03 19:03:41 +09:00

12 lines
243 B
C#

using BlueWater.Items;
using UnityEngine;
namespace DDD.ScriptableObjects
{
[CreateAssetMenu(fileName = "LevelTable", menuName = "ScriptableObjects/LevelTable")]
public class CraftRecipeDataSo : DataSo<CraftRecipeData>
{
}
}