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/Code_LayerHold.cpp
2016-09-19 19:46:03 -06:00

12 lines
177 B
C++

#include "Code_LayerHold.h"
void Code_LayerHold::press()
{
refLayerState.hold(layerId);
}
void Code_LayerHold::release()
{
refLayerState.unhold(layerId);
}