14 lines
No EOL
166 B
C++
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;
|
|
};
|
|
} |