//------------------------------------------------------------ // Game Framework // Copyright © 2013-2021 loyalsoft. All rights reserved. // Homepage: http://www.game7000.com/ // Feedback: http://www.game7000.com/ //------------------------------------------------------------ namespace GameFramework.Sound { /// /// 重置声音代理事件。 /// public sealed class ResetSoundAgentEventArgs : GameFrameworkEventArgs { /// /// 初始化重置声音代理事件的新实例。 /// public ResetSoundAgentEventArgs() { } /// /// 创建重置声音代理事件。 /// /// 创建的重置声音代理事件。 public static ResetSoundAgentEventArgs Create() { ResetSoundAgentEventArgs resetSoundAgentEventArgs = ReferencePool.Acquire(); return resetSoundAgentEventArgs; } /// /// 清理重置声音代理事件。 /// public override void Clear() { } } }