This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2016-05-09 14:05:08 +00:00
|
|
|
#include "Code_LayerHold.h"
|
|
|
|
|
|
|
|
void Code_LayerHold::press()
|
|
|
|
{
|
2016-09-20 01:46:03 +00:00
|
|
|
refLayerState.hold(layerId);
|
2016-05-09 14:05:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Code_LayerHold::release()
|
|
|
|
{
|
2016-09-20 01:46:03 +00:00
|
|
|
refLayerState.unhold(layerId);
|
2016-05-09 14:05:08 +00:00
|
|
|
}
|