| 1018 | //----------------------------------------------------------------------------- |
| 1019 | |
| 1020 | SceneObject* SceneObject::getMountNodeObject(S32 node) |
| 1021 | { |
| 1022 | for (SceneObject* itr = mMount.list; itr; itr = itr->mMount.link) |
| 1023 | if (itr->mMount.node == node) |
| 1024 | return itr; |
| 1025 | return NULL; |
| 1026 | } |
| 1027 | |
| 1028 | //----------------------------------------------------------------------------- |
| 1029 |
no outgoing calls
no test coverage detected