Files
FNGameProj/Source/FortniteGame/Private/PlaylistUserOptionFloatRange.cpp
2024-01-21 00:41:14 +01:00

10 lines
223 B
C++

#include "PlaylistUserOptionFloatRange.h"
UPlaylistUserOptionFloatRange::UPlaylistUserOptionFloatRange() {
this->Min = 0.00f;
this->Max = 0.00f;
this->DefaultValue = 0.00f;
this->IncrementValue = 0.25f;
}