1
0
mirror of https://github.com/davpapp/PowerMiner synced 2024-08-13 17:03:53 -04:00
PowerMiner/src/CursorTask.java

23 lines
566 B
Java
Raw Normal View History

import java.awt.AWTException;
public class CursorTask extends Cursor {
public CursorTask() throws AWTException {
super();
}
public void dropAllItemsInInventory() {
for (int inventoryColumn = 0; inventoryColumn < 7; inventoryColumn++) {
for (int inventoryRow = 0; inventoryRow < 4; inventoryRow++) {
//dropItem
}
}
}
2018-01-31 00:45:08 -05:00
public void dropItem(InventorySlot inventorySlot) {
2018-01-31 08:12:02 -05:00
/*Point inventorySlotCoordinates = inventorySlot.getCoordinates();
2018-01-31 00:45:08 -05:00
moveAndRightClickAtCoordinates(inventorySlotCoordinates);
2018-01-31 08:12:02 -05:00
moveAndLeftClickAtCoordinates();*/
2018-01-31 00:45:08 -05:00
}
}