ContactNode

Node on a doubly linked list of contact nodes. Contains info about the contacted object for this node, and number of other contacts. The list can be traversed by looping through Previous and Next until a nil value is reached.

Variables

ContactObject (unsigned int)
The handle of the contact Object for this node.
NumberOfContacts (int16)
The number of contacted objects.
Previous (ContactNode)
The previous contact node. May be nil.
Next (ContactNode)
The next contact node. May be nil.