mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
15 lines
199 B
C++
15 lines
199 B
C++
#pragma once
|
|
|
|
#include "AudioThread.h"
|
|
|
|
class AudioManager
|
|
{
|
|
std::shared_ptr<AudioThread> m_audio_out;
|
|
|
|
public:
|
|
void Init();
|
|
void Close();
|
|
|
|
AudioThread& GetAudioOut() { return *m_audio_out; }
|
|
};
|