mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
20 lines
517 B
C++
20 lines
517 B
C++
#include "FortPlayerSurveyQuestionSelector.h"
|
|
|
|
void UFortPlayerSurveyQuestionSelector::SetSurvey(UFortPlayerSurveyBase* Value) {
|
|
}
|
|
|
|
void UFortPlayerSurveyQuestionSelector::HandleQuestionChanged(UObject* Source, int32 Index) {
|
|
}
|
|
|
|
void UFortPlayerSurveyQuestionSelector::HandleAnswerChanged(UObject* Source, int32 Index) {
|
|
}
|
|
|
|
UFortPlayerSurveyBase* UFortPlayerSurveyQuestionSelector::GetSurvey() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortPlayerSurveyQuestionSelector::UFortPlayerSurveyQuestionSelector() {
|
|
Survey = NULL;
|
|
}
|
|
|