Renamed a few classes so that all of them are uppercase

This commit is contained in:
2019-03-11 02:12:10 -06:00
parent 11b16b4e40
commit c0914d8e5e
4 changed files with 11 additions and 12 deletions

View File

@@ -509,7 +509,7 @@ public class TaipanShopGUI {
bankButton.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
bankGUI bank = new bankGUI(getPlayer());
BankGUI bank = new BankGUI(getPlayer());
bank.initializeBank(stage);
stage.show();
}
@@ -540,7 +540,7 @@ public class TaipanShopGUI {
loanButton.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
loanSharkGUI loan = new loanSharkGUI(getPlayer());
LoanSharkGUI loan = new LoanSharkGUI(getPlayer());
loan.initializeLoanShark(stage);
stage.show();
}