diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2022-09-22 13:21:30 -0400 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2022-09-22 13:21:30 -0400 |
commit | 8d9c74bc4f9652739143163f6861682999fbfbe5 (patch) | |
tree | fade1044a4fef66e67c6ca8cf9f1c0e13b4b6a53 /engine/xe_sound_device.hpp | |
parent | add alut (diff) | |
download | minecraftvulkan-8d9c74bc4f9652739143163f6861682999fbfbe5.tar.gz minecraftvulkan-8d9c74bc4f9652739143163f6861682999fbfbe5.tar.bz2 minecraftvulkan-8d9c74bc4f9652739143163f6861682999fbfbe5.zip |
finish openal and ALUT
Diffstat (limited to 'engine/xe_sound_device.hpp')
-rw-r--r-- | engine/xe_sound_device.hpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/engine/xe_sound_device.hpp b/engine/xe_sound_device.hpp deleted file mode 100644 index a6a034e..0000000 --- a/engine/xe_sound_device.hpp +++ /dev/null @@ -1,25 +0,0 @@ -#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; - -}; - -}
\ No newline at end of file |