| 129 | } |
| 130 | |
| 131 | const UTF8 * LangFile::getString(U32 id) |
| 132 | { |
| 133 | if(id == LANG_INVALID_ID || id >= mStringTable.size()) |
| 134 | return NULL; |
| 135 | return mStringTable[id]; |
| 136 | } |
| 137 | |
| 138 | U32 LangFile::addString(const UTF8 *str) |
| 139 | { |
no test coverage detected