1 2 3 4 5 6 7 8 9 10 11 12 13
namespace Ryujinx.Audio.Renderer.Parameter { /// <summary> /// Generic interface to represent output information for an effect. /// </summary> public interface IEffectOutStatus { /// <summary> /// Current effect state. /// </summary> EffectState State { get; set; } } }