13 lines
174 B
C#
13 lines
174 B
C#
using System;
|
|
|
|
namespace DarkTonic.MasterAudio
|
|
{
|
|
[Serializable]
|
|
public class AmbientSoundToTriggerInfo
|
|
{
|
|
public int frameToTrigger;
|
|
|
|
public AmbientSound ambient;
|
|
}
|
|
}
|