11 lines
328 B
C#
11 lines
328 B
C#
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace BlueWater.Audios
|
||
|
{
|
||
|
[CreateAssetMenu(fileName = "BgmData", menuName = "ScriptableObjects/Audio/BgmData")]
|
||
|
public class BgmDataSo : ScriptableObject
|
||
|
{
|
||
|
[field: SerializeField] public List<BgmData> BgmDataList { get; private set; } = new();
|
||
|
}
|
||
|
}
|