| 31 | } |
| 32 | |
| 33 | void GuiComponent::update(int deltaTime) |
| 34 | { |
| 35 | for(unsigned int i = 0; i < getChildCount(); i++) |
| 36 | { |
| 37 | getChild(i)->update(deltaTime); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | void GuiComponent::render(const Eigen::Affine3f& parentTrans) |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected