Hello,
I'm trying to check if one image matches another for a platforming game (to check if the tile is solid).
I have this snippet of code
if(TileMapObj->TileMapVect[i].GetImage() == TileMapObj->TileVect[1])
and it is giving me the error "no match for operator== in ...."
TileMapVect is a vector that contains sf::Sprites while TileVect is a vector that contains objects of type sf::Image.
So yea, I'm probably trying to compare apples and oranges.