| 18 | { |
| 19 | |
| 20 | bool ResearchTopic::isComplete() const |
| 21 | { |
| 22 | return (this->type != ResearchTopic::Type::Engineering) && |
| 23 | (this->man_hours_progress >= this->man_hours); |
| 24 | } |
| 25 | |
| 26 | void ResearchTopic::forceComplete() |
| 27 | { |
no outgoing calls
no test coverage detected