mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
19 lines
496 B
C++
19 lines
496 B
C++
#include "PlaylistUserOptionBase.h"
|
|
|
|
FString UPlaylistUserOptionBase::GetOptionValueNameFromValue(const FString& OptionValue, bool bAllowNoOverride) const {
|
|
return TEXT("");
|
|
}
|
|
|
|
FString UPlaylistUserOptionBase::GetOptionKey(bool bWithScoping) const {
|
|
return TEXT("");
|
|
}
|
|
|
|
UPlaylistUserOptionBase::UPlaylistUserOptionBase() {
|
|
OptionMaterial = NULL;
|
|
bCanHaveNoOverride = false;
|
|
MenuListType = UFortMatchmakingKnobsDataSource::None;
|
|
WeightOffset = 0;
|
|
EditWidget = NULL;
|
|
}
|
|
|