9 lines
211 B
C#
9 lines
211 B
C#
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
[CreateAssetMenu(menuName = "Sound/Content", fileName = "Sound Content")]
|
|||
|
public class SoundContent : ScriptableObject
|
|||
|
{
|
|||
|
public SoundPack[] Sounds;
|
|||
|
}
|