| 32 | String SimObjectList::smSortScriptCallbackFn; |
| 33 | |
| 34 | bool SimObjectList::pushBack(SimObject* obj) |
| 35 | { |
| 36 | if (T3D::find(begin(),end(),obj) == end()) |
| 37 | { |
| 38 | push_back(obj); |
| 39 | return true; |
| 40 | } |
| 41 | |
| 42 | return false; |
| 43 | } |
| 44 | |
| 45 | bool SimObjectList::pushBackForce(SimObject* obj) |
| 46 | { |
no test coverage detected