mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
348 B
C++
14 lines
348 B
C++
#include "SliderSettings.h"
|
|
|
|
FSliderSettings::FSliderSettings() {
|
|
this->MinIntegralDigits = 0;
|
|
this->MaxIntegralDigits = 0;
|
|
this->MinFractionalDigits = 0;
|
|
this->MaxFractionalDigits = 0;
|
|
this->MinSensitivityValue = 0.00f;
|
|
this->MaxSensitivityValue = 0.00f;
|
|
this->StepSize = 0.00f;
|
|
this->RoundingMode = HalfToEven;
|
|
}
|
|
|