diff --git a/inferno/src/inferno/application.cpp b/inferno/src/inferno/application.cpp index 2b73c11..337f7e0 100644 --- a/inferno/src/inferno/application.cpp +++ b/inferno/src/inferno/application.cpp @@ -25,12 +25,14 @@ namespace Inferno { s_instance = this; // Initialize + Settings::initialize(); - Input::initialize(); m_window = std::make_unique(); m_window->setEventCallback(NF_BIND_EVENT(Application::onEvent)); + Input::initialize(); + TextureManager textureManager; m_texture = textureManager.load("assets/gfx/test.png");