If you see & in a function parameter without const before it, it means that it’s an Out Parameter – a parameter that will be changed by the function, but not a return type.
In this case the function is void GetLocalBounds(FVector& Min, FVector& Max) const; – it has two Out Parameters, so in order to use it, you need to do something like: