namespace Ryujinx.Audio.Renderer.Common { /// /// The type of a sink. /// public enum SinkType : byte { /// /// The sink is in an invalid state. /// Invalid, /// /// The sink is a device. /// Device, /// /// The sink is a circular buffer. /// CircularBuffer } }