aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Renderer/Parameter/IEffectOutStatus.cs
blob: 74d132209dce89061a9f456b2b7084c2df12e536 (plain) (blame)
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; }
    }
}