mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
431 B
C++
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;
|
|
}
|
|
|