original ver 25/06/01

This commit is contained in:
2025-06-02 00:48:08 +08:00
committed by akangz
commit 89e03899f0
1065 changed files with 183622 additions and 0 deletions
@@ -0,0 +1,8 @@
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "SongList", menuName = "Music/SongList")]
public class SongList : ScriptableObject
{
public List<SongData> songs = new List<SongData>(); // 存储所有歌曲的数据
}