void Window::Create(std::string title) { glfwSetErrorCallback(error_callback); if (GL_TRUE != glfwInit()) { AC_CORE_ASSERT("Failed to initialize GLFW. This could be a problem with your hardware or software."); } else { window = glfwCreat...