| 1001 | } |
| 1002 | |
| 1003 | int levelgoals::GetActivePrimaryGoal(int p_index) { |
| 1004 | if (p_index < 0 || p_index >= m_num_active_primaries) |
| 1005 | return -1; |
| 1006 | |
| 1007 | return m_active_primaries[p_index]; |
| 1008 | } |
| 1009 | |
| 1010 | int levelgoals::GetNumActiveSecondaryGoals() { |
| 1011 | int x; |
no outgoing calls
no test coverage detected