| 17 | } |
| 18 | |
| 19 | Image::Ptr Image::Create( const sf::Image& image ) { |
| 20 | return Ptr( new Image( image ) ); |
| 21 | } |
| 22 | |
| 23 | void Image::SetImage( const sf::Image& image ) { |
| 24 | if( !image.getSize().x || !image.getSize().y ) { |
nothing calls this directly
no outgoing calls
no test coverage detected