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

16 lines
No EOL
244 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;
};
}