summaryrefslogtreecommitdiff
path: root/engine/xe_engine.hpp
diff options
context:
space:
mode:
authorTyler Murphy <tylermurphy534@gmail.com>2022-09-22 13:21:30 -0400
committerTyler Murphy <tylermurphy534@gmail.com>2022-09-22 13:21:30 -0400
commit8d9c74bc4f9652739143163f6861682999fbfbe5 (patch)
treefade1044a4fef66e67c6ca8cf9f1c0e13b4b6a53 /engine/xe_engine.hpp
parentadd alut (diff)
downloadminecraftvulkan-8d9c74bc4f9652739143163f6861682999fbfbe5.tar.gz
minecraftvulkan-8d9c74bc4f9652739143163f6861682999fbfbe5.tar.bz2
minecraftvulkan-8d9c74bc4f9652739143163f6861682999fbfbe5.zip
finish openal and ALUT
Diffstat (limited to 'engine/xe_engine.hpp')
-rw-r--r--engine/xe_engine.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engine/xe_engine.hpp b/engine/xe_engine.hpp
index 285edf3..d86c6a9 100644
--- a/engine/xe_engine.hpp
+++ b/engine/xe_engine.hpp
@@ -6,7 +6,6 @@
#include "xe_camera.hpp"
#include "xe_descriptors.hpp"
#include "xe_image.hpp"
-#include "xe_sound_device.hpp"
#include <chrono>
#include <string>
@@ -18,7 +17,7 @@ class XeEngine {
XeEngine(int width, int height, std::string name);
- ~XeEngine() {};
+ ~XeEngine();
XeEngine(const XeEngine&) = delete;
XeEngine operator=(const XeEngine&) = delete;
@@ -45,7 +44,6 @@ class XeEngine {
XeDevice xeDevice;
XeRenderer xeRenderer;
XeCamera xeCamera;
- XeSoundDevice xeSoundDevice;
std::chrono::_V2::system_clock::time_point currentTime;
float frameTime;