12 lines
259 B (Stored with Git LFS)
C#
12 lines
259 B (Stored with Git LFS)
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace DDD
|
|
{
|
|
[Serializable]
|
|
public class BgmData
|
|
{
|
|
[field: SerializeField] public string BgmName { get; private set; }
|
|
[field: SerializeField] public AudioClip Clip { get; private set; }
|
|
}
|
|
} |