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

22 lines
231 B
C++
Raw Normal View History

2022-10-27 22:27:50 +05:00
#pragma once
#include "../window_system.hpp"
namespace hpr::gpu::glfw
{
class WindowSystem : public gpu::WindowSystem
{
public:
WindowSystem();
2022-10-28 21:16:03 +05:00
~WindowSystem() override;
gpu::Window* newWindow() override;
2022-10-27 22:27:50 +05:00
};
}