mirror of
https://github.com/vale981/Hyprland
synced 2025-03-14 22:46:41 -04:00
17 lines
No EOL
388 B
C++
17 lines
No EOL
388 B
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
|
|
struct SMonitor {
|
|
Vector2D vecPosition = Vector2D(0,0);
|
|
Vector2D vecSize = Vector2D(0,0);
|
|
|
|
bool primary = false;
|
|
|
|
int ID = -1;
|
|
|
|
std::string szName = "";
|
|
|
|
Vector2D vecReservedTopLeft = Vector2D(0,0);
|
|
Vector2D vecReservedBottomRight = Vector2D(0,0);
|
|
}; |