sf::Image::Copy ?
Oh wow, thanks--Sorry about that, I don't know how I missed that.
I was just thinking 'shouldn't this have a rect'.
Btw, can you give me a bit of help with the Rect constructor, I have:
sf::Rect<int> rct=sf::Rect(1,1,1,1); //doesn't work
NVM, i just got the template code to work...
sf::Rect<int> rct=sf::Rect<int>(1,1,1,1);
looks different than the doc:
sf::Rect< T >::Rect ( T LeftCoord,
T TopCoord,
T RightCoord,
T BottomCoord
)