Hi,
I’m trying to implement a function in C++ to which I can pass an object of any structure as a parameter.
Unfortunately this fails because of the type of the passing parameter.
Here is an example of what I would like to accomplish with an user defined structure:
It seems like the type needs to be FStructOnScope, so, my function would need to look like
static FString DoSomethingWithStructInstance(const FStructOnScope* StructData);
But FStructOnScope isn’t supported, is that the wrong type or is there a way to accomplish what I want?
Thank you in advance