mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
25 lines
548 B
C++
25 lines
548 B
C++
#include "FortPlayerSurveyDispatcher.h"
|
|
|
|
|
|
void UFortPlayerSurveyDispatcher::SetOwningPlayer(APlayerController* Value) {
|
|
}
|
|
|
|
|
|
void UFortPlayerSurveyDispatcher::HandleSurveyDismissed(UFortPlayerSurveyPanelBase* Source) {
|
|
}
|
|
|
|
void UFortPlayerSurveyDispatcher::HandleDisplayOneSurvey() {
|
|
}
|
|
|
|
|
|
void UFortPlayerSurveyDispatcher::DisplaySurveys(int32 SurveyCount) {
|
|
}
|
|
|
|
UFortPlayerSurveyDispatcher::UFortPlayerSurveyDispatcher() {
|
|
this->WidgetClass = NULL;
|
|
this->OwningPlayer = NULL;
|
|
this->SurveyContext = NULL;
|
|
this->CurrentWidget = NULL;
|
|
}
|
|
|