merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
Showing only changes of commit a92c06a70e - Show all commits

View File

@@ -137,6 +137,21 @@ public boolean isFinished() {
return true; return true;
} }
/**
* This method returns a
*
* @param bonusCard
* @return
*/
public PowerCard getPowerCardByType(BonusCard bonusCard) {
for (PowerCard card : this.handCards) {
if(card.getCard().equals(bonusCard)) {
return card;
}
}
return null;
}
/** /**
* This method returns the give name of the Player * This method returns the give name of the Player
* *