2024-06-03 18:26:03 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2025-02-10 02:13:46 +00:00
|
|
|
namespace DDD.Audios
|
2024-06-03 18:26:03 +00:00
|
|
|
{
|
|
|
|
[CreateAssetMenu(fileName = "SfxData", menuName = "ScriptableObjects/Audio/SfxData")]
|
|
|
|
public class SfxDataSo : ScriptableObject
|
|
|
|
{
|
|
|
|
[field: SerializeField] public List<SfxData> SfxDataList { get; private set; } = new();
|
|
|
|
}
|
|
|
|
}
|