Unattaches an object from its parent
| 154 | |
| 155 | // Unattaches an object from its parent |
| 156 | bool dUnattachFromParent(object *child) { return UnattachFromParent(child); } |
| 157 | |
| 158 | // Unattaches all children from a parent object |
| 159 | bool dUnattachChildren(object *parent) { return UnattachChildren(parent); } |
nothing calls this directly
no test coverage detected