mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-13 04:50:26 +00:00
9 lines
141 B
C++
9 lines
141 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class IAudioDevice
|
|
{
|
|
public:
|
|
virtual void PlayBuffer(int16_t *soundBuffer, uint32_t bufferSize) = 0;
|
|
}; |