mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
22 lines
688 B
C++
22 lines
688 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortPlayerSurveyCMSDataQuestionStandardBase.h"
|
|
#include "FortPlayerSurveyCMSDataQuestionFreeFormText.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FFortPlayerSurveyCMSDataQuestionFreeFormText : public FFortPlayerSurveyCMSDataQuestionStandardBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FText ht;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
bool R;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
int32 L;
|
|
|
|
FORTNITEUI_API FFortPlayerSurveyCMSDataQuestionFreeFormText();
|
|
};
|
|
|