mirror of
https://github.com/vale981/Hyprland
synced 2025-03-15 23:16:39 -04:00
12 lines
216 B
C++
12 lines
216 B
C++
![]() |
#pragma once
|
||
|
|
||
|
#include "../defines.hpp"
|
||
|
#include "../Window.hpp"
|
||
|
|
||
|
interface IHyprLayout {
|
||
|
public:
|
||
|
|
||
|
virtual void onWindowCreated(CWindow*) = 0;
|
||
|
virtual void onWindowRemoved(CWindow*) = 0;
|
||
|
|
||
|
};
|