mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 12:25:59 +01:00
9 lines
147 B
C++
9 lines
147 B
C++
|
#pragma once
|
||
|
|
||
|
#include "../defines.hpp"
|
||
|
|
||
|
struct SWorkspace {
|
||
|
int ID = -1;
|
||
|
uint64_t monitorID = -1;
|
||
|
bool hasFullscreenWindow = false;
|
||
|
};
|