PowerMiner/src/main.java

24 lines
570 B
Java
Raw Normal View History

import java.awt.AWTException;
import java.awt.Point;
import java.io.IOException;
2018-01-24 03:42:10 -05:00
import java.net.URL;
public class main {
public static void main(String[] args) throws AWTException, InterruptedException, IOException {
Cursor cursor = new Cursor();
CursorTask cursorTask = new CursorTask();
//cursor.displayCursorPaths();
Inventory inventory = new Inventory();
//inventory.update();
cursorTask.optimizedDropAllItemsInInventory(cursor, inventory);
System.out.println("Success!");
//cursor.moveCursorToCoordinates(new Point(620, 420));
2018-01-30 04:14:17 -05:00
}
}