PowerMiner/src/main.java

30 lines
841 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.dropBottomRow(cursor, inventory);
/*cursorTask.dropItem(cursor, inventory, 0, 0);
Thread.sleep(3000);
cursorTask.dropItem(cursor, inventory, 3, 5);
Thread.sleep(3000);
cursorTask.dropItem(cursor, inventory, 0, 6);*/
//Items items = new Items("/home/dpapp/Desktop/RunescapeAIPics/Items/");
2018-02-01 22:39:57 -05:00
//items.displayItems();
System.out.println("Success!");
//cursor.moveCursorToCoordinates(new Point(620, 420));
2018-01-30 04:14:17 -05:00
}
}