Contact Pair Constructor
| 32 | |
| 33 | // Contact Pair Constructor |
| 34 | OverlapCallback::OverlapPair::OverlapPair(ContactPair& contactPair, PhysicsWorld& world, bool isLostOverlappingPair) |
| 35 | : mContactPair(contactPair), mWorld(world), mIsLostOverlapPair(isLostOverlappingPair) { |
| 36 | |
| 37 | } |
| 38 | |
| 39 | // Return a pointer to the first collider in contact |
| 40 | Collider* OverlapCallback::OverlapPair::getCollider1() const { |
nothing calls this directly
no outgoing calls
no test coverage detected