mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-12-29 12:19:47 +01:00
15 lines
No EOL
320 B
C++
15 lines
No EOL
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 = "";
|
|
}; |