| 116 | } |
| 117 | |
| 118 | float Engine::GetFontBaselineOffset( const sf::Font& font, unsigned int font_size ) const { |
| 119 | return GetFontHeightProperties( font, font_size ).y; |
| 120 | } |
| 121 | |
| 122 | float Engine::GetFontLineSpacing( const sf::Font& font, unsigned int font_size ) const { |
| 123 | return static_cast<float>( font.getLineSpacing( font_size ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected