| 1162 | //----------------------------------------------------------------------------- |
| 1163 | |
| 1164 | S32 SceneObject::getMountedObjectCount() |
| 1165 | { |
| 1166 | S32 count = 0; |
| 1167 | for (SceneObject* itr = mMount.list; itr; itr = itr->mMount.link) |
| 1168 | count++; |
| 1169 | return count; |
| 1170 | } |
| 1171 | |
| 1172 | //----------------------------------------------------------------------------- |
| 1173 |
no outgoing calls
no test coverage detected