| 87 | } |
| 88 | |
| 89 | bool Production::haveEnoughMoneyForOneMoreUnit(SavedGame * g) |
| 90 | { |
| 91 | return (g->getFunds() >= _rules->getManufactureCost ()); |
| 92 | } |
| 93 | |
| 94 | bool Production::haveEnoughMaterialsForOneMoreUnit(Base * b) |
| 95 | { |
nothing calls this directly
no test coverage detected