* Returns the amount of living quarters used up * by personnel in the base. * @return Living space. */
| 531 | * @return Living space. |
| 532 | */ |
| 533 | int Base::getUsedQuarters() const |
| 534 | { |
| 535 | return getTotalSoldiers() + getTotalScientists() + getTotalEngineers(); |
| 536 | } |
| 537 | |
| 538 | /** |
| 539 | * Returns the total amount of living quarters |
no outgoing calls
no test coverage detected