MCPcopy Create free account
hub / github.com/MaaXYZ/MaaFramework / MaaControllerPostTouchMove

Function MaaControllerPostTouchMove

source/Common/MaaController.cpp:193–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191}
192
193MaaCtrlId MaaControllerPostTouchMove(MaaController* ctrl, int32_t contact, int32_t x, int32_t y, int32_t pressure)
194{
195 LogFunc << VAR_VOIDP(ctrl) << VAR(contact) << VAR(x) << VAR(y) << VAR(pressure);
196
197 if (!ctrl) {
198 LogError << "handle is null";
199 return MaaInvalidId;
200 }
201
202 return ctrl->post_touch_move(contact, x, y, pressure);
203}
204
205MaaCtrlId MaaControllerPostTouchUp(MaaController* ctrl, int32_t contact)
206{

Callers 1

post_touch_moveMethod · 0.85

Calls 1

post_touch_moveMethod · 0.45

Tested by

no test coverage detected