Hello, the title says all!, Im looking into how to change mouse position
I alredy managed to get the X Y positions
Code:
POINT p;
GetCursorPos(&p);
std::cout << "Mouse X posittion: " << p.x << std::endl;
std::cout << "Mouse Y posittion: " << p.y << std::endl;
I looked up for SendInput but never undernstood it
Thanks