Skip to content
Permalink
12cc15c255
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
86 lines (67 sloc) 1.23 KB
package model;
public class Player
{
private FinancialStatement _fs;
private boolean _donate;
private int _charityCount; //charity counter
private int _downsizeCount; //down size counter
private int _location;//refers to a tile number
private boolean _hasWon;
public Player()
{
Professions p = new Professions();
_fs = new FinancialStatement(p.getProfession());
_charityCount = 0;
_downsizeCount = 0;
_location = 0;
_hasWon = false;
}
public boolean hasWon()
{
return _hasWon;
}
public FinancialStatement getFinancialStatement()
{
return _fs;
}
public boolean donateCharity()
{
return _donate;
}
public void setCharity(boolean charityq)
{
_donate = charityq;
}
public void setLocation(int i)
{
_location = i;
}
public int getLocation()
{
return this._location;
}
public int getCharityCount()
{
return _charityCount;
}
public void setCharityCount(int charityCount)
{
_charityCount = charityCount;
}
public void decrementCharityCount()
{
_charityCount--;
}
public void increaseDownsizeCount()
{
_downsizeCount = _downsizeCount + 2;
}
public int getDownsizeCount()
{
return _downsizeCount;
}
public void decrememntDownsizeCount()
{
_downsizeCount--;
}
}