Example #1
0
void toggleLeftClick() {
	leftClickStatus = MouseGlove.getLeftClickStatus();
	if (leftClickStatus == true) MouseGlove.leftClickDown(coordenadasMouse);
	else MouseGlove.leftClickUp(coordenadasMouse);
	resetTimer();
}
Example #2
0
void toggleLeftClick() {
	leftClickStatus = MouseGlove.getLeftClickStatus();
	if (leftClickStatus == true) MouseGlove.leftClickDown(mouseCoordinates);
	else MouseGlove.leftClickUp(mouseCoordinates);
	resetTimer();
}