22 lines
231 B
C++
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;
|
|
|
|
};
|
|
|
|
} |