mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-12-02 09:25:58 +01:00
10 lines
211 B
C++
10 lines
211 B
C++
|
#include "../defines.hpp"
|
||
|
|
||
|
class Keybind {
|
||
|
EXPOSED_MEMBER(Mod, int, i);
|
||
|
EXPOSED_MEMBER(Keysym, xcb_keysym_t,);
|
||
|
EXPOSED_MEMBER(Command, std::string, sz);
|
||
|
EXPOSED_MEMBER(Dispatcher, void*, p);
|
||
|
};
|
||
|
|