Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
deleted a few things
  • Loading branch information
afortuna2016 committed Apr 25, 2017
1 parent 761816a commit ac8faef
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Binary file modified bin/controller/Cashflow.class
Binary file not shown.
Binary file modified bin/view/GameboardWindow.class
Binary file not shown.
5 changes: 3 additions & 2 deletions src/controller/Cashflow.java
Expand Up @@ -21,7 +21,8 @@ public class Cashflow


public static void main(String[] args) public static void main(String[] args)
{ {
testGamePlay(); //testGamePlay();

} }


public static void go() public static void go()
Expand Down Expand Up @@ -75,7 +76,7 @@ public class Cashflow
public boolean isWinner() public boolean isWinner()
{ {
boolean isWinner = false; boolean isWinner = false;
for(Player p : players) for(Player p : _players)
{ {
if(p.hasWon()) if(p.hasWon())
{ {
Expand Down
2 changes: 0 additions & 2 deletions src/view/MainMenu.java
Expand Up @@ -275,8 +275,6 @@ public class MainMenu
public void actionPerformed(ActionEvent e) { public void actionPerformed(ActionEvent e) {
frame.dispose(); frame.dispose();


//Cashflow.go(playerNames);
//System.exit(0);
} }
}); });
return playerNames; return playerNames;
Expand Down

0 comments on commit ac8faef

Please sign in to comment.