mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
17 lines
446 B
C++
17 lines
446 B
C++
#include "PlaylistUserOptionBase.h"
|
|
|
|
FString UPlaylistUserOptionBase::GetOptionValueNameFromValue(const FString& OptionValue) const {
|
|
return TEXT("");
|
|
}
|
|
|
|
FString UPlaylistUserOptionBase::GetOptionKey(bool bWithScoping) const {
|
|
return TEXT("");
|
|
}
|
|
|
|
UPlaylistUserOptionBase::UPlaylistUserOptionBase() {
|
|
this->OptionMaterial = NULL;
|
|
this->bCanHaveNoOverride = false;
|
|
this->MenuListType = UFortMatchmakingKnobsDataSource::None;
|
|
}
|
|
|