hyporo-cpp/source/hpr/window_system/glfw/monitor.cpp

14 lines
171 B
C++
Raw Normal View History

2022-10-27 22:27:50 +05:00
#include "monitor.hpp"
2022-10-28 21:16:03 +05:00
namespace hpr::gpu::glfw
{
Monitor::Monitor() :
gpu::Monitor {Provider::GLFW},
p_instance {nullptr}
{}
Monitor::~Monitor() = default;
}