* Returns the amount of space available for * soldiers and vehicles. * @return Space available. */
| 827 | * @return Space available. |
| 828 | */ |
| 829 | int Craft::getSpaceAvailable() const |
| 830 | { |
| 831 | return _rules->getSoldiers() - getSpaceUsed(); |
| 832 | } |
| 833 | |
| 834 | /** |
| 835 | * Returns the amount of space in use by |
no test coverage detected