| 2344 | } |
| 2345 | |
| 2346 | static bool ObjectExists(int id) { |
| 2347 | bool result = false; |
| 2348 | |
| 2349 | if (id >= 0) { |
| 2350 | result = the_scenegraph->DoesObjectWithIdExist(id); |
| 2351 | } |
| 2352 | |
| 2353 | return result; |
| 2354 | } |
| 2355 | |
| 2356 | Object* ReadObjectFromID(int id) { |
| 2357 | Object* obj = the_scenegraph->GetObjectFromID(id); |
nothing calls this directly
no test coverage detected