This commit is contained in:
vaxerski
2022-03-17 20:22:29 +01:00
parent ab7d727532
commit bc937e3e71
12 changed files with 222 additions and 10 deletions

13
src/render/Renderer.hpp Normal file
View File

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