mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
41 lines
878 B
C++
41 lines
878 B
C++
#include "FortCreativeOption.h"
|
|
|
|
void UFortCreativeOption::SetCurrentIndex(int32 Index) {
|
|
}
|
|
|
|
void UFortCreativeOption::IncrementIndexWithWrap() {
|
|
}
|
|
|
|
int32 UFortCreativeOption::GetValueAtIndex(int32 Index) {
|
|
return 0;
|
|
}
|
|
|
|
int32 UFortCreativeOption::GetValueAtCurrentIndex() {
|
|
return 0;
|
|
}
|
|
|
|
int32 UFortCreativeOption::GetCurrentIndex() {
|
|
return 0;
|
|
}
|
|
|
|
FText UFortCreativeOption::GetCreativeOptionTextAtIndex(int32 Index) {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
FText UFortCreativeOption::GetCreativeOptionTextAtCurrent() {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
bool UFortCreativeOption::DoesMatchCategory(FCreativeOptionCategoryData& CreativeOptionCategory) {
|
|
return false;
|
|
}
|
|
|
|
void UFortCreativeOption::DecrementIndexWithWrap() {
|
|
}
|
|
|
|
UFortCreativeOption::UFortCreativeOption() {
|
|
MenuListType = UFortMatchmakingKnobsDataSource::CreativeGlobalOption;
|
|
CurrentIndex = 0;
|
|
}
|
|
|