| 3165 | } |
| 3166 | |
| 3167 | void GetCharacters(CScriptArray* array) { |
| 3168 | for (auto& movement_object : the_scenegraph->movement_objects_) { |
| 3169 | int val = movement_object->GetID(); |
| 3170 | array->InsertLast(&val); |
| 3171 | } |
| 3172 | } |
| 3173 | |
| 3174 | void GetCharactersInHull(std::string path, mat4 transform, CScriptArray* array) { |
| 3175 | ContactInfoCallback cb; |
nothing calls this directly
no test coverage detected