| 79 | //----------------------------------------------------------------------------- |
| 80 | |
| 81 | ConsoleBaseType* ConsoleBaseType::getType(const S32 typeID) |
| 82 | { |
| 83 | if( typeID == -1 || gConsoleTypeTable.size() <= typeID ) |
| 84 | return NULL; |
| 85 | |
| 86 | return gConsoleTypeTable[ typeID ]; |
| 87 | } |
| 88 | |
| 89 | //----------------------------------------------------------------------------- |
| 90 |
no test coverage detected