| 148 | // == FloatSetting ================================================================================ |
| 149 | |
| 150 | FloatSetting::FloatSetting() : val(0.0f), oldVal(0.0f), minVal(0.0f), maxVal(0.0f), step(0.0) |
| 151 | { |
| 152 | } |
| 153 | |
| 154 | void FloatSetting::Initialize(const char* name_, const char* group_, |
| 155 | const char* label_, const char* helpText_, float initialVal, |
nothing calls this directly
no outgoing calls
no test coverage detected