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