| 116 | const CVar* getCVarByIndex(u32 index); |
| 117 | |
| 118 | inline f32 getFloatArg(const std::string& arg) |
| 119 | { |
| 120 | char* endPtr = nullptr; |
| 121 | return (f32)strtod(arg.c_str(), &endPtr); |
| 122 | } |
| 123 | |
| 124 | inline bool getBoolArg(const std::string& arg) |
| 125 | { |
no test coverage detected