hyporo-cpp/source/hpr/window_system/glfw/monitor.hpp
2022-12-06 23:52:49 +05:00

28 lines
279 B
C++

#pragma once
#include "../monitor.hpp"
#include <GLFW/glfw3.h>
namespace hpr::gpu::glfw
{
class Monitor : public gpu::Monitor
{
friend class WindowSystem;
friend class Window;
protected:
GLFWmonitor* p_instance;
public:
Monitor();
~Monitor();
};
}