aboutsummaryrefslogtreecommitdiff
path: root/core/src/Entrypoint/Common.cpp
blob: 62baf9dc01368ff5f82d06397eebb57ada875cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "Common.hpp"

#include <iostream>

GLFWwindow* RenderingBackend::GetWindow() const {
    return mWindow;
}

void RenderingBackend::GlfwErrorCallback(int error, const char* message) {
    std::cerr << "GLFW Error " << error << ": " << message << "\n";
}