11 lines
340 B
C#
11 lines
340 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
// ReSharper disable once CheckNamespace
|
||
|
|
namespace DarkTonic.MasterAudio {
|
||
|
|
/// <summary>
|
||
|
|
/// This attribute can be used in public string fields in your custom scripts. It will show a dropdown of all Sound Groups in the Scene.
|
||
|
|
/// </summary>
|
||
|
|
public class SoundGroupAttribute : PropertyAttribute {
|
||
|
|
}
|
||
|
|
}
|