My PlayerController has a struct and I want to transfer it to another class. The struct is relatively big so I don’t want to tranfer every variable of the struct alone. So how can I achieve that? Pls with example code.
If I am correct into assuming you simply want to use your struct in a different, just include the class with the struct in the header and make your struct variable like you would any other variable.