ProjectDDD/Assets/_DDD/_Scripts/Audio/SfxDataSo.cs
2025-07-08 19:46:31 +09:00

11 lines
315 B
C#

using System.Collections.Generic;
using UnityEngine;
namespace DDD
{
[CreateAssetMenu(fileName = "SfxData", menuName = "ScriptableObjects/Audio/SfxData")]
public class SfxDataSo : ScriptableObject
{
[field: SerializeField] public List<SfxData> SfxDataList { get; private set; } = new();
}
}