Files
hyprland/src/render/Renderer.hpp
vaxerski bc937e3e71 Renderer
2022-03-17 20:22:29 +01:00

14 lines
216 B
C++

#pragma once
#include "../defines.hpp"
class CHyprRenderer {
public:
void renderAllClientsForMonitor(const int&, timespec*);
private:
};
inline std::unique_ptr<CHyprRenderer> g_pHyprRenderer;