Untitled
2 years ago in Plain Text
import java.awt.*;
import java.util.Random;
public class Main {
public static void main(String[] args) throws AWTException {
Robot hal = new Robot();
Random random = new Random();
while(true){
hal.delay(1000 * 60);
int x = random.nextInt() % 640;
int y = random.nextInt() % 480;
hal.mouseMove(x,y);
}
}
}