mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
26 lines
878 B
C++
26 lines
878 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortPlayerSurveyAnswerFreeFormText.h"
|
|
#include "FortPlayerSurveyAnswerWidgetBase.h"
|
|
#include "FortPlayerSurveyFreeFormTextAnswerWidgetBase.generated.h"
|
|
|
|
class UFortPlayerSurveyQuestionFreeFormText;
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UFortPlayerSurveyFreeFormTextAnswerWidgetBase : public UFortPlayerSurveyAnswerWidgetBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortPlayerSurveyFreeFormTextAnswerWidgetBase();
|
|
protected:
|
|
UFUNCTION(BlueprintCallable)
|
|
void SetCurrentAnswer(const FFortPlayerSurveyAnswerFreeFormText& Value);
|
|
|
|
UFUNCTION(BlueprintCallable, BlueprintPure)
|
|
UFortPlayerSurveyQuestionFreeFormText* GetCurrentQuestion() const;
|
|
|
|
UFUNCTION(BlueprintCallable, BlueprintPure)
|
|
void GetCurrentAnswer(bool& bOutIsSet, FFortPlayerSurveyAnswerFreeFormText& OutAnswer) const;
|
|
|
|
};
|
|
|