mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 12:13:25 +00:00
16 lines
444 B
C++
16 lines
444 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortPlayerSurveyAnswerBase.h"
|
|
#include "FortPlayerSurveyAnswerFreeFormText.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FFortPlayerSurveyAnswerFreeFormText : public FFortPlayerSurveyAnswerBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FString AnswerText;
|
|
|
|
FORTNITEGAME_API FFortPlayerSurveyAnswerFreeFormText();
|
|
};
|
|
|