Skip to content
Permalink
35cfc9891f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
40 lines (28 sloc) 602 Bytes
package model;
public class Player
{
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
}
}