mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-26 00:50:50 +01:00
8 lines
193 B
C#
8 lines
193 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Audio
|
|||
|
{
|
|||
|
[Service("auddev")] // 6.0.0+
|
|||
|
class IAudioSnoopManager : IpcService
|
|||
|
{
|
|||
|
public IAudioSnoopManager(ServiceCtx context) { }
|
|||
|
}
|
|||
|
}
|