1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/sound/audioengine.hpp
2024-04-19 16:21:45 -03:00

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