Files
2026-04-22 15:51:07 +02:00

16 lines
431 B
C++

#include "FortSettingInfo.h"
UFortSettingInfo::UFortSettingInfo() {
this->SettingType = ESettingType::None;
this->SettingWidgetType = NULL;
this->MinIntegralDigits = 0;
this->MaxIntegralDigits = 0;
this->MinFractionalDigits = 0;
this->MaxFractionalDigits = 0;
this->StepSize = 0.00f;
this->MinSensitivityValue = 0.00f;
this->MaxSensitivityValue = 0.00f;
this->RoundingMode = HalfToEven;
}