| 8 | namespace sfg { |
| 9 | |
| 10 | Label::Label( const sf::String& text ) : |
| 11 | m_text( text ), |
| 12 | m_wrap( false ) |
| 13 | { |
| 14 | SetAlignment( sf::Vector2f( .5f, .5f ) ); |
| 15 | Invalidate(); |
| 16 | } |
| 17 | |
| 18 | Label::Ptr Label::Create( const sf::String& text ) { |
| 19 | Ptr label( new Label( text ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected