| 982 | //----------------------------------------------------------------------------- |
| 983 | |
| 984 | S32 SceneObject::getMountedObjectCount() |
| 985 | { |
| 986 | S32 count = 0; |
| 987 | for (SceneObject* itr = mMount.list; itr; itr = itr->mMount.link) |
| 988 | count++; |
| 989 | return count; |
| 990 | } |
| 991 | |
| 992 | //----------------------------------------------------------------------------- |
| 993 |
no outgoing calls
no test coverage detected