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

11 lines
315 B
C#

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