(code, id, x, y, ticks)
| 410 | onTouchCancelled(code, id, x, y, ticks) { |
| 411 | } |
| 412 | onTouchEnded(code, id, x, y, ticks) { |
| 413 | code.stop(); |
| 414 | this.onSelected(code); |
| 415 | } |
| 416 | onTouchMoved(code, id, x, y, ticks) { |
| 417 | if ((this.x != x) || (this.y != y)) |
| 418 | this.onTouchSelect(code, x, y); |
nothing calls this directly
no test coverage detected