| 397 | } |
| 398 | |
| 399 | void GuiGameList::update(int deltaTime) |
| 400 | { |
| 401 | mTransitionAnimation.update(deltaTime); |
| 402 | mImageAnimation.update(deltaTime); |
| 403 | |
| 404 | if(mEffectFunc != NULL) |
| 405 | { |
| 406 | mEffectTime += deltaTime; |
| 407 | (this->*mEffectFunc)(mEffectTime); |
| 408 | } |
| 409 | |
| 410 | GuiComponent::update(deltaTime); |
| 411 | } |
| 412 | |
| 413 | void GuiGameList::doTransition(int dir) |
| 414 | { |
nothing calls this directly
no outgoing calls
no test coverage detected