UPhysicsHandleComponent* PhysicsHandle = GetPhysicsHandle();
Simple question here. Whats going on under the hood when we say — UPhysicsHandleComponent*----
1 - If this is a pointer what is it pointing towards and how can i find out for other cases where code is used the same way?
2- From My understanding in this line of code PhysicsHandle is a variable and the result of GetPhysicsHandle() is being assigned to it(PhysicsHandle).
Can someone explain whats going on under the hood here?