mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 12:13:25 +00:00
17 lines
562 B
C++
17 lines
562 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortPlayerSurveyQuestionChoice.h"
|
|
#include "FortPlayerSurveyQuestionStandardBase.h"
|
|
#include "FortPlayerSurveyQuestionMultipleChoice.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class FORTNITEGAME_API UFortPlayerSurveyQuestionMultipleChoice : public UFortPlayerSurveyQuestionStandardBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<FFortPlayerSurveyQuestionChoice> Choices;
|
|
|
|
UFortPlayerSurveyQuestionMultipleChoice();
|
|
};
|
|
|