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