mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
17 lines
272 B
C++
17 lines
272 B
C++
#ifndef XNA_SOUND_SOUNDENGINE_HPP
|
|
#define XNA_SOUND_SOUNDENGINE_HPP
|
|
|
|
#include "../default.hpp"
|
|
//#include <Audio.h>
|
|
|
|
namespace xna {
|
|
class IAudioEngine {
|
|
public:
|
|
virtual ~IAudioEngine(){}
|
|
|
|
public:
|
|
//uptr<DirectX::AudioEngine> _dxAudioEngine = nullptr;
|
|
};
|
|
}
|
|
|
|
#endif |