Modules/Graphics/private/WindowContext.hpp
2024-03-19 17:35:02 +03:00

14 lines
No EOL
167 B
C++

#pragma once
#include "Window.hpp"
struct GLFWwindow;
namespace tp {
class Window::Context {
public:
Context() = default;
GLFWwindow* window = nullptr;
};
}