| 6337 | } |
| 6338 | |
| 6339 | void AS_SetConfigValueInt(std::string key, int value) { |
| 6340 | config.GetRef(key) = value; |
| 6341 | config.ReloadDynamicSettings(); |
| 6342 | } |
| 6343 | |
| 6344 | int AS_GetConfigValueInt(std::string string) { |
| 6345 | return config[string].toNumber<int>(); |
nothing calls this directly
no test coverage detected