mirror of
https://github.com/vale981/Hyprland
synced 2025-03-15 23:16:39 -04:00
13 lines
No EOL
278 B
C++
13 lines
No EOL
278 B
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include "../Window.hpp"
|
|
|
|
interface IHyprLayout {
|
|
public:
|
|
|
|
virtual void onWindowCreated(CWindow*) = 0;
|
|
virtual void onWindowRemoved(CWindow*) = 0;
|
|
virtual void recalculateMonitor(const int&) = 0;
|
|
|
|
}; |