| 447 | } |
| 448 | |
| 449 | Color Sky::skyFlashColor() const { |
| 450 | Color res = Color::White; |
| 451 | res.setAlphaF(m_flashTimer / m_settings.queryFloat("flashTimer")); |
| 452 | return res; |
| 453 | } |
| 454 | |
| 455 | bool Sky::flying() const { |
| 456 | if (m_flyingType == FlyingType::None) |
nothing calls this directly
no test coverage detected