Hello, I'm having problems passing a vector of structs to a function. What I'm trying to do is create a program that implements of a vector of structs which hold data about an object. Thanks in advance if you can provide any help.
Sorry about that. The problem i'm having is that I can't access the struct once i'm inside the function. For instance, I can't do MVehicle.CarName and enter a value for that struct. Instead, it gives me a lists of options for a vector only. So it looks like i'm only passing a vector instead of a struct.
You are passing a vector of struct objects, each element of the vector would be an object of the struct ( the vector you are passing is empty )
What are you trying to do in that function?