minecraftvulkan/engine/xe_sound_device.hpp

25 lines
288 B
C++
Raw Normal View History

2022-09-22 15:14:00 +00:00
#pragma once
#include <AL/alc.h>
#include <AL/alext.h>
#include <AL/al.h>
namespace xe {
class XeSoundDevice {
public:
XeSoundDevice();
~XeSoundDevice();
private:
void listAudioDevices(const ALCchar* devices);
ALCdevice* device;
ALCcontext* context;
};
}