| 63 | } |
| 64 | |
| 65 | int CConsole::CResult::GetInteger(unsigned Index) const |
| 66 | { |
| 67 | if(Index >= m_NumArgs) |
| 68 | return 0; |
| 69 | int Out; |
| 70 | return str_toint(m_apArgs[Index], &Out) ? Out : 0; |
| 71 | } |
| 72 | |
| 73 | float CConsole::CResult::GetFloat(unsigned Index) const |
| 74 | { |
no test coverage detected