Modules/Graphics/private/bindings/WindowContext.hpp
2024-11-24 22:41:08 +03:00

17 lines
No EOL
245 B
C++

#pragma once
// -------- Window Context -------- //
#include <GLFW/glfw3.h>
namespace tp {
class Window;
class Window::Context {
friend Graphics::GL;
friend Graphics::GUI;
friend Graphics::Canvas;
public:
GLFWwindow* window;
};
}