Hello, I wonder if using template
for UCLASS
which is BlueprintType is possible. When I tried to compile it, it gave me header errors
template<typename T> //here
UCLASS(BlueprintType) //here
class TESTTURNBASE_API UMultiArrayRow : public UObject
{
public:
GENERATED_BODY()
UPROPERTY(EditAnywhere, BlueprintReadWrite, Meta = (DeterminesOutputType = "Rows"), Category = MultiArray)
TArray<T> Columns;
};