namespace Ryujinx.Audio.Backends.Apple { class AppleAudioBuffer { public readonly ulong DriverIdentifier; public readonly ulong SampleCount; public ulong SamplePlayed; public AppleAudioBuffer(ulong driverIdentifier, ulong sampleCount) { DriverIdentifier = driverIdentifier; SampleCount = sampleCount; SamplePlayed = 0; } } }