mirror of
https://github.com/hyprwm/Hypr.git
synced 2025-01-01 05:09:49 +01:00
15 lines
320 B
C++
15 lines
320 B
C++
|
#pragma once
|
||
|
|
||
|
#include "../defines.hpp"
|
||
|
|
||
|
struct SMonitor {
|
||
|
Vector2D vecPosition = Vector2D(0,0);
|
||
|
Vector2D vecSize = Vector2D(0,0);
|
||
|
|
||
|
bool hasABar = false;
|
||
|
bool primary = false;
|
||
|
|
||
|
int ID = -1;
|
||
|
|
||
|
std::string szName = "";
|
||
|
};
|