Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/src/Key_LayeredKeys.cpp

14 lines
221 B
C++
Raw Normal View History

#include "Key_LayeredKeys.h"
void Key_LayeredKeys::press()
{
layer = refLayerState.getActiveLayer();
ptrsKeys[layer]->press();
}
void Key_LayeredKeys::release()
{
ptrsKeys[layer]->release();
}