| 824 | } |
| 825 | |
| 826 | void IDrawableModule::RemoveChild(IDrawableModule* child) |
| 827 | { |
| 828 | child->SetParent(nullptr); |
| 829 | RemoveFromVector(child, mChildren); |
| 830 | } |
| 831 | |
| 832 | std::vector<IUIControl*> IDrawableModule::GetUIControls() const |
| 833 | { |
no test coverage detected