mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-12-01 17:05:58 +01:00
10 lines
No EOL
258 B
C++
10 lines
No EOL
258 B
C++
#include "Keybind.hpp"
|
|
|
|
Keybind::Keybind(unsigned int mod, xcb_keysym_t keysym, std::string comm, Dispatcher disp) {
|
|
this->m_iMod = mod;
|
|
this->m_Keysym = keysym;
|
|
this->m_szCommand = comm;
|
|
this->m_pDispatcher = disp;
|
|
}
|
|
|
|
Keybind::~Keybind() { } |