Add missing virtual destructor

This commit is contained in:
Daniel Chappuis 2016-06-20 08:40:26 +02:00
parent c3e74856a0
commit 9fae1b4e35

View File

@ -62,6 +62,9 @@ class TestCollisionBetweenShapesCallback : public NarrowPhaseCallback {
}
// Destructor
virtual ~TestCollisionBetweenShapesCallback() { }
// Called by a narrow-phase collision algorithm when a new contact has been found
virtual void notifyContact(OverlappingPair* overlappingPair,
const ContactPointInfo& contactInfo);