diff options
Diffstat (limited to 'engine/xe_engine.hpp')
-rw-r--r-- | engine/xe_engine.hpp | 4 |
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; |