Modules/Graphics/private/bindings/WindowContext.hpp
2023-07-23 22:11:14 +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;
};
}