PowerMiner/src/main.java

22 lines
527 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();
2018-02-01 22:39:57 -05:00
//Inventory inventory = new Inventory();
//inventory.update();
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
}
}