mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
19 lines
328 B
C++
19 lines
328 B
C++
#ifndef XNA_PLATFORM_SOUNDENGINE_DX_HPP
|
|
#define XNA_PLATFORM_SOUNDENGINE_DX_HPP
|
|
|
|
#include "../sound/audioengine.hpp"
|
|
|
|
|
|
namespace xna {
|
|
class AudioEngine : public IAudioEngine {
|
|
public:
|
|
AudioEngine() {
|
|
|
|
}
|
|
|
|
public:
|
|
//static inline uptr<DirectX::AudioEngine> _dxAudioEngine = uNew<DirectX::AudioEngine>();
|
|
};
|
|
}
|
|
|
|
#endif |