| 686 | } |
| 687 | |
| 688 | sf::Text makeText(const sf::Font& font, const sf::String& string, sf::Vector2f position) |
| 689 | { |
| 690 | sf::Text text(font, string, textSize); |
| 691 | text.setLineSpacing(getSpacingFactor(font)); |
| 692 | text.setPosition(position); |
| 693 | |
| 694 | return text; |
| 695 | } |
| 696 | |
| 697 | //////////////////////////////////////////////////////////// |
| 698 | // Utilities to describe keyboard events |
no test coverage detected