Hypr/src/utilities/Keybind.cpp

10 lines
250 B
C++
Raw Normal View History

2021-11-19 20:20:05 +01:00
#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() { }