| 1252 | } |
| 1253 | |
| 1254 | void afxConstraintMgr::addScopeableObject(SceneObject* object) |
| 1255 | { |
| 1256 | for (S32 i = 0; i < scopeable_objs.size(); i++) |
| 1257 | { |
| 1258 | if (scopeable_objs[i] == object) |
| 1259 | return; |
| 1260 | } |
| 1261 | |
| 1262 | object->addScopeRef(); |
| 1263 | scopeable_objs.push_back(object); |
| 1264 | } |
| 1265 | |
| 1266 | void afxConstraintMgr::removeScopeableObject(SceneObject* object) |
| 1267 | { |
no test coverage detected