Example #1
0
 /// <summary></summary>
 /// <param name="pair">The contact pair we are being notified of. See NxContactPair. </param>
 /// <param name="events">Flags raised due to the contact. See NxContactPairFlag.</param>
 public virtual void onContactNotify(NxContactPair pair, uint events)
 {
     if (doSetFunctionPointers)
     {
         throw new System.NotSupportedException("Cannot call abstract base member");
     }
     NxUserContactReport_onContactNotify_INVOKE(ClassPointer, doSetFunctionPointers, (pair != null ? pair.ClassPointer : NullRef), events);
 }
Example #2
0
 private void onContactNotify_virtual(IntPtr pair, uint events)
 {
     onContactNotify(NxContactPair.GetClass(pair), events);
 }