mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-30 00:15:59 +01:00
10 lines
154 B
C++
10 lines
154 B
C++
|
#pragma once
|
||
|
|
||
|
#include "../defines.hpp"
|
||
|
|
||
|
class CWorkspace {
|
||
|
public:
|
||
|
EXPOSED_MEMBER(ID, int, i);
|
||
|
EXPOSED_MEMBER(LastWindow, xcb_drawable_t, i);
|
||
|
};
|