19 lines
301 B
C#
19 lines
301 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description: 音频简易配置
|
|
* @Date: 2025年05月22日 星期四 17:05:22
|
|
* @Modify:
|
|
*/
|
|
|
|
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
|
|
namespace Logic.Audio
|
|
{
|
|
public class AudioClipConfig : MonoBehaviour
|
|
{
|
|
public List<AudioClip> Clips;
|
|
}
|
|
} |