mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-12-02 01:15:59 +01:00
10 lines
250 B
C++
10 lines
250 B
C++
|
#include "Keybind.hpp"
|
||
|
|
||
|
Keybind::Keybind(MODS 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() { }
|