| 51 | } |
| 52 | |
| 53 | sf::Vector2f Image::CalculateRequisition() { |
| 54 | return sf::Vector2f( static_cast<float>( m_image.getSize().x ), static_cast<float>( m_image.getSize().y ) ); |
| 55 | } |
| 56 | |
| 57 | const std::string& Image::GetName() const { |
| 58 | static const std::string name( "Image" ); |
nothing calls this directly
no outgoing calls
no test coverage detected