Files
Jan2021-Cpp2Il-Dump/RecRoom.Streamingaudio.Runtime/RecRoom/StreamingAudio/IStreamingAudioImplementation.cs
T
2026-04-08 23:40:05 +02:00

29 lines
613 B
C#

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace RecRoom.StreamingAudio
{
// Token: 0x02000002 RID: 2
[Token(Token = "0x2000002")]
[StructLayout(3)]
public interface IStreamingAudioImplementation
{
// Token: 0x17000001 RID: 1
// (get) Token: 0x06000001 RID: 1
[Token(Token = "0x17000001")]
bool IsSupported
{
[Token(Token = "0x6000001")]
[Address(Slot = "0")]
get;
}
// Token: 0x06000002 RID: 2
[Token(Token = "0x6000002")]
[Address(Slot = "1")]
IReadOnlyList<IAudioOutputDevice> GetOutputDevices();
}
}