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