1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/platform/audioengine-dx.hpp

19 lines
328 B
C++
Raw Normal View History

2024-04-19 16:21:45 -03:00
#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