| 120 | } |
| 121 | |
| 122 | Goal* Seat::getCompletedGoal(unsigned int index) |
| 123 | { |
| 124 | if (index >= mCompletedGoals.size()) |
| 125 | return nullptr; |
| 126 | |
| 127 | return mCompletedGoals[index]; |
| 128 | } |
| 129 | |
| 130 | unsigned int Seat::numFailedGoals() |
| 131 | { |
no outgoing calls
no test coverage detected