Hi,
I’ve created a structure in C++:
USTRUCT()
struct FQuestionData {
GENERATED_USTRUCT_BODY()
UPROPERTY()
TArray<FString> MyText;
QuestionData() { }
};
Now I would like to create a variable of that struct in Blueprint. But when I click on list dialog to choose a type of variable there’s no QuestionData structure.