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

17 lines
332 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++) {
}
}
}
}