| 1153 | } |
| 1154 | |
| 1155 | bool SceneGraph::DoesObjectWithIdExist(int object_id) { |
| 1156 | Object* object_at_id = GetIdToObjectMapValue(object_from_id_map_, object_id); |
| 1157 | bool result = object_at_id != NULL; |
| 1158 | return result; |
| 1159 | } |
| 1160 | |
| 1161 | std::vector<Object*> SceneGraph::GetObjectsOfType(enum EntityType type) { |
| 1162 | std::vector<Object*> ret; |
no test coverage detected