Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
A simple playable version is done.
  • Loading branch information
pog14001 committed Mar 29, 2016
1 parent 58e0ebb commit 5c3eafc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CSE2102-GroupProject/src/view/PurchasePanel.java
Expand Up @@ -69,8 +69,8 @@ public class PurchasePanel extends JDialog implements Observer{
public void update(Observable arg0, Object arg1) {
// TODO Auto-generated method stub
Player player = GUI.getCurPlayer();
this.puInfoLabel.setText("You have " + player.leftPUs + " PUs left out of" + player.PUs +
" PUs. Purchasing a total of " + player.purchasedUnitNum() + "units.");
this.puInfoLabel.setText("You have " + player.leftPUs + " PUs left out of " + player.PUs +
" PUs. Purchasing a total of " + player.purchasedUnitNum() + " units.");
}
}

Expand Down
1 change: 1 addition & 0 deletions progress.txt
Expand Up @@ -61,4 +61,5 @@ week 6:
3. Now, it's very simple playable game.
4. add code to collect PUs at the end of each turn.
5. fix bugs and refine code to make the views a litter more confortable.
6. A simple playable version is done.

3 changes: 2 additions & 1 deletion progress.txt~
Expand Up @@ -60,5 +60,6 @@ week 6:
2. code to check winning state done
3. Now, it's very simple playable game.
4. add code to collect PUs at the end of each turn.
5.
5. fix bugs and refine code to make the views a litter more confortable.
6. A simple playable version is done.

0 comments on commit 5c3eafc

Please sign in to comment.