2024-09-09 09:50:37 +00:00
|
|
|
using BlueWater.Items;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2025-02-03 10:03:41 +00:00
|
|
|
namespace DDD.ScriptableObjects
|
2024-09-09 09:50:37 +00:00
|
|
|
{
|
|
|
|
[CreateAssetMenu(fileName = "LevelTable", menuName = "ScriptableObjects/LevelTable")]
|
2025-02-03 10:03:41 +00:00
|
|
|
public class CraftRecipeDataSo : DataSo<CraftRecipeData>
|
2024-09-09 09:50:37 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2025-02-03 10:03:41 +00:00
|
|
|
}
|