hyporo-cpp/source/hyporo/window_system/glfw/window_system.hpp
2022-11-18 21:50:49 +05:00

22 lines
231 B
C++

#pragma once
#include "../window_system.hpp"
namespace hpr::gpu::glfw
{
class WindowSystem : public gpu::WindowSystem
{
public:
WindowSystem();
~WindowSystem() override;
gpu::Window* newWindow() override;
};
}