mirror of
https://github.com/nothke/quality-control.git
synced 2024-11-13 22:33:43 +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;
|
||
|
}
|
||
|
}
|
||
|
|