mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-09 01:15:57 +01:00
11 lines
220 B
C++
11 lines
220 B
C++
|
#include "utilities/Keybind.hpp"
|
||
|
#include <vector>
|
||
|
|
||
|
namespace KeybindManager {
|
||
|
std::vector<Keybind> keybinds;
|
||
|
|
||
|
|
||
|
// -- Methods -- //
|
||
|
|
||
|
Keybind* findKeybindByKey(int mod, xcb_keysym_t keysym);
|
||
|
};
|