Hypr/src/utilities/Keybind.cpp

10 lines
258 B
C++
Raw Normal View History

2021-11-19 20:20:05 +01:00
#include "Keybind.hpp"
2021-12-06 15:04:47 +01:00
Keybind::Keybind(unsigned int mod, xcb_keysym_t keysym, std::string comm, Dispatcher disp) {
2021-11-19 20:20:05 +01:00
this->m_iMod = mod;
this->m_Keysym = keysym;
this->m_szCommand = comm;
this->m_pDispatcher = disp;
}
Keybind::~Keybind() { }