Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update Player.java
  • Loading branch information
jjv14001 committed Mar 24, 2017
1 parent 8a38044 commit 35cfc98
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion src/model/Player.java
Expand Up @@ -2,8 +2,39 @@ package model;

public class Player
{
private FinancialStatement _fs;
public FinacialStatement _fs; //financial statement of user
//idNumber?
// public boolean _charity;
private int _CharityCount; //charity counter
private int _DownsizeCount; //downsize counter
private int _location;
private boolean _winner = false;

public boolean hasWon() {
return _winner;
}

//needs to roll dice
public void pickCard() {

}

public boolean donateCharity() {
//
return false;
}

public void setLocation() {

}

public int getLocation() {
return this._location;
}

public Player() { //constructer

}


}

0 comments on commit 35cfc98

Please sign in to comment.