mirror of
https://github.com/nothke/quality-control.git
synced 2024-11-12 22:03:42 +00:00
14 lines
309 B
C#
14 lines
309 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Nothke.Audio
|
|
{
|
|
[CreateAssetMenu(menuName = "CollisionSoundsProfile", fileName = "CollisionSoundsProfile")]
|
|
public class CollisionSoundsProfile : ScriptableObject
|
|
{
|
|
public AudioClip[] clips;
|
|
}
|
|
}
|
|
|