mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 13:46:00 +01:00
13 lines
No EOL
308 B
C++
13 lines
No EOL
308 B
C++
#include "IHyprWindowDecoration.hpp"
|
|
|
|
#include "../../Window.hpp"
|
|
|
|
IHyprWindowDecoration::~IHyprWindowDecoration() {}
|
|
|
|
SWindowDecorationExtents IHyprWindowDecoration::getWindowDecorationReservedArea() {
|
|
return SWindowDecorationExtents{};
|
|
}
|
|
|
|
bool IHyprWindowDecoration::allowsInput() {
|
|
return false;
|
|
} |