13 lines
237 B
C#
13 lines
237 B
C#
|
|
/*! \cond PRIVATE */
|
|||
|
|
using System;
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
namespace DarkTonic.MasterAudio {
|
|||
|
|
[Serializable]
|
|||
|
|
public class AmbientSoundToTriggerInfo {
|
|||
|
|
public int frameToTrigger;
|
|||
|
|
public AmbientSound ambient;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
/*! \endcond */
|