Modules/Graphics/private/bindings/WindowContext.hpp
2023-10-22 20:23:29 +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;
};
}