PowerMiner/src/Inventory.java

20 lines
331 B
Java
Raw Normal View History

2018-01-31 08:12:02 -05:00
public class Inventory {
InventorySlot[][] inventorySlots;
public Inventory() {
inventorySlots = new InventorySlot[4][7];
for (int row = 0; row < 7; row++) {
for (int column = 0; column < 4; column++) {
inventorySlots[column][row] = new InventorySlot();
}
}
}
public void update() {
// Screenshot
}
}