diff options
Diffstat (limited to 'engine/xe_engine.cpp')
-rw-r--r-- | engine/xe_engine.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/engine/xe_engine.cpp b/engine/xe_engine.cpp index a4ddaea..f28bbce 100644 --- a/engine/xe_engine.cpp +++ b/engine/xe_engine.cpp @@ -1,17 +1,12 @@ #include "xe_engine.hpp" -#include "xe_image.hpp" - -#include <chrono> -#include <iostream> -#include <AL/alc.h> -#include <AL/alut.h> namespace xe { Engine::Engine(int width, int height, std::string name) : xeWindow{width, height, name}, xeDevice{xeWindow}, xeRenderer{xeWindow, xeDevice}, - xeCamera{} { + xeCamera{}, + xeInput{xeWindow} { loadDescriptorPool(); alutInit(0, NULL); |