mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
26 lines
501 B
C++
26 lines
501 B
C++
#ifndef XNA_SOUND_SOUNDENGINE_HPP
|
|
#define XNA_SOUND_SOUNDENGINE_HPP
|
|
|
|
#include "../default.hpp"
|
|
|
|
namespace xna {
|
|
class AudioEngine {
|
|
public:
|
|
AudioEngine();
|
|
~AudioEngine();
|
|
bool Reset();
|
|
bool Resume();
|
|
bool Suspend();
|
|
bool Update();
|
|
void DefaultSampleRate(int value);
|
|
void MasterVolume(float value);
|
|
void MasteringLimit(int limit, int loudness);
|
|
void Reverb(AudioReverb value);
|
|
|
|
public:
|
|
struct PlatformImplementation;
|
|
uptr<PlatformImplementation> impl = nullptr;
|
|
};
|
|
}
|
|
|
|
#endif |