///////////////////////////////////////////////////////
| 32 | public: |
| 33 | //////////////////////////////////////////////////////////// |
| 34 | Application() |
| 35 | { |
| 36 | m_window.setVerticalSyncEnabled(true); |
| 37 | m_logText.setFillColor(sf::Color::White); |
| 38 | m_handlerText.setFillColor(sf::Color::White); |
| 39 | m_handlerText.setStyle(sf::Text::Bold); |
| 40 | m_handlerText.setPosition({380.f, 260.f}); |
| 41 | m_instructions.setFillColor(sf::Color::White); |
| 42 | m_instructions.setStyle(sf::Text::Bold); |
| 43 | m_instructions.setPosition({380.f, 310.f}); |
| 44 | } |
| 45 | |
| 46 | // The visitor we pass to event->visit in the "Visitor" handler |
| 47 | // Make sure all defined operator()s return the same type. |
nothing calls this directly
no test coverage detected