Modules/Graphics/private/WindowContext.hpp
2024-03-19 11:21:58 +03:00

14 lines
No EOL
166 B
C++

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