| 671 | constexpr unsigned int lineSize = textSize + space; |
| 672 | |
| 673 | float getSpacingFactor(const sf::Font& font) |
| 674 | { |
| 675 | return static_cast<float>(lineSize) / font.getLineSpacing(textSize); |
| 676 | } |
| 677 | |
| 678 | ShinyText makeShinyText(const sf::Font& font, const sf::String& string, sf::Vector2f position) |
| 679 | { |
no test coverage detected