From 35cfc9891f8148af0c80c55c30b5a8be0febccdd Mon Sep 17 00:00:00 2001 From: Jacklyn J Videira Date: Fri, 24 Mar 2017 13:41:57 -0400 Subject: [PATCH] Update Player.java --- src/model/Player.java | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/src/model/Player.java b/src/model/Player.java index 6a024cd..10ae45d 100644 --- a/src/model/Player.java +++ b/src/model/Player.java @@ -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 + + } }