| 51 | } |
| 52 | |
| 53 | std::string GoalClaimNTiles::getDescription(const Seat& s) |
| 54 | { |
| 55 | std::stringstream tempSS; |
| 56 | tempSS << "Claimed " << s.getNumClaimedTiles() << " of " |
| 57 | << mNumberOfTiles << " tiles."; |
| 58 | return tempSS.str(); |
| 59 | } |
nothing calls this directly
no test coverage detected