namespace Ryujinx.Audio.Renderer.Parameter { /// /// Generic interface to represent output information for an effect. /// public interface IEffectOutStatus { /// /// Current effect state. /// EffectState State { get; set; } } }