Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

move mouse c++

#include <Windows.h>
int main()
{
  int x = 3; int y = 4;
  SetCursorPos(x, y); //set cursor position
  return 0;
}
 
PREVIOUS NEXT
Tagged: #move #mouse
ADD COMMENT
Topic
Name
9+5 =