comaps_touch method

void comaps_touch(
  1. int type,
  2. int id1,
  3. double x1,
  4. double y1,
  5. int id2,
  6. double x2,
  7. double y2,
)

Touch event handling type: 1=TOUCH_DOWN, 2=TOUCH_MOVE, 3=TOUCH_UP, 4=TOUCH_CANCEL id1, x1, y1: first touch pointer id2, x2, y2: second touch pointer (use -1 for id2 if single touch)

Implementation

void comaps_touch(
  int type,
  int id1,
  double x1,
  double y1,
  int id2,
  double x2,
  double y2,
) {
  return _comaps_touch(type, id1, x1, y1, id2, x2, y2);
}