|
namespace Mono.Event
|
|
{
|
|
public class AudioEventArgs : GameEventArgs
|
|
{
|
|
public static readonly int EventId = typeof(AudioEventArgs).GetHashCode();
|
|
public override int Id => EventId;
|
|
|
|
public string audioName;
|
|
|
|
public AudioEventArgs(string audioName)
|
|
{
|
|
this.audioName = audioName;
|
|
}
|
|
}
|
|
} |