Retrieve BodyPart names from Collision Event

orxSTATUS orxFASTCALL PhysicsEventHandler(const orxEVENT *_pstEvent)
{
    if (_pstEvent->eType == orxEVENT_TYPE_PHYSICS) {
        orxPHYSICS_EVENT_PAYLOAD* payload = (orxPHYSICS_EVENT_PAYLOAD*)event->pstPayload; 
        orxLOG("Recipient %s | Sender: %s", payload->zRecipientPartName, payload->zSenderPartName);
    }
}