mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
25 lines
598 B
C++
25 lines
598 B
C++
#include "FortPlayerSurveyWidgetBase.h"
|
|
|
|
void UFortPlayerSurveyWidgetBase::SetSurvey(TScriptInterface<IFortPlayerSurvey> Value) {
|
|
}
|
|
|
|
void UFortPlayerSurveyWidgetBase::NativeHandleSurveyChanged() {
|
|
}
|
|
|
|
void UFortPlayerSurveyWidgetBase::NativeHandleQuestionsChanged(UObject* Source, int32 Index) {
|
|
}
|
|
|
|
void UFortPlayerSurveyWidgetBase::NativeHandleDescriptionChanged(UObject* Source) {
|
|
}
|
|
|
|
|
|
|
|
|
|
TScriptInterface<IFortPlayerSurvey> UFortPlayerSurveyWidgetBase::GetSurvey() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortPlayerSurveyWidgetBase::UFortPlayerSurveyWidgetBase() : UUserWidget(FObjectInitializer::Get()) {
|
|
}
|
|
|