| 20 | } |
| 21 | |
| 22 | bool GuiComponent::input(InputConfig* config, Input input) |
| 23 | { |
| 24 | for(unsigned int i = 0; i < getChildCount(); i++) |
| 25 | { |
| 26 | if(getChild(i)->input(config, input)) |
| 27 | return true; |
| 28 | } |
| 29 | |
| 30 | return false; |
| 31 | } |
| 32 | |
| 33 | void GuiComponent::update(int deltaTime) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected