Merged TaipanShop and Warehouse. Just need to add functionality to warehouse.

This commit is contained in:
2019-03-10 18:28:59 -06:00
parent a0e0ab517d
commit 9a15f6bc63
2 changed files with 206 additions and 167 deletions

View File

@@ -506,7 +506,9 @@ public class TaipanShopGUI {
cargoButton.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("PLACEHOLDER FOR WAREHOUSE");
WarehouseGUI warehouseGUI = new WarehouseGUI(player);
warehouseGUI.initializeWarehouse(stage);
stage.show();
}
});